53 lines
1.0 KiB
C#
53 lines
1.0 KiB
C#
// <file>
|
|
// <copyright see="prj:///doc/copyright.txt"/>
|
|
// <license see="prj:///doc/license.txt"/>
|
|
// <owner name="Mike Krüger" email="mike@icsharpcode.net"/>
|
|
// <version>$Revision$</version>
|
|
// </file>
|
|
|
|
using System;
|
|
|
|
namespace ICSharpCode.TextEditor.Document
|
|
{
|
|
/// <summary>
|
|
/// This interface is used to describe a span inside a text sequence
|
|
/// </summary>
|
|
public class AbstractSegment : ISegment
|
|
{
|
|
[CLSCompliant(false)]
|
|
protected int offset = -1;
|
|
[CLSCompliant(false)]
|
|
protected int length = -1;
|
|
|
|
#region ICSharpCode.TextEditor.Document.ISegment interface implementation
|
|
public virtual int Offset {
|
|
get {
|
|
return offset;
|
|
}
|
|
set {
|
|
offset = value;
|
|
}
|
|
}
|
|
|
|
public virtual int Length {
|
|
get {
|
|
return length;
|
|
}
|
|
set {
|
|
length = value;
|
|
}
|
|
}
|
|
|
|
#endregion
|
|
|
|
public override string ToString()
|
|
{
|
|
return string.Format("[AbstractSegment: Offset = {0}, Length = {1}]",
|
|
Offset,
|
|
Length);
|
|
}
|
|
|
|
|
|
}
|
|
}
|