X-Git-Url: http://secure.phpeclipse.com diff --git a/net.sourceforge.phpeclipse/src/net/sourceforge/phpdt/internal/corext/textmanipulation/TextRegion.java b/net.sourceforge.phpeclipse/src/net/sourceforge/phpdt/internal/corext/textmanipulation/TextRegion.java index 69919c6..ef008ad 100644 --- a/net.sourceforge.phpeclipse/src/net/sourceforge/phpdt/internal/corext/textmanipulation/TextRegion.java +++ b/net.sourceforge.phpeclipse/src/net/sourceforge/phpdt/internal/corext/textmanipulation/TextRegion.java @@ -4,34 +4,37 @@ */ package net.sourceforge.phpdt.internal.corext.textmanipulation; - /** - * A text region describes a certain range in an ITextBuffer. A region is defined by - * its offset into the text buffer and its length. + * A text region describes a certain range in an ITextBuffer. A + * region is defined by its offset into the text buffer and its length. *

- * A region is considered a value object. Its offset or length do not change over time.

+ * A region is considered a value object. Its offset or length do not change + * over time. + *

*

- * NOTE: This class/interface is part of an interim API that is still under development - * and expected to change significantly before reaching stability. It is being made available at - * this early stage to solicit feedback from pioneering adopters on the understanding that any - * code that uses this API will almost certainly be broken (repeatedly) as the API evolves.

+ * NOTE: This class/interface is part of an interim API that is still + * under development and expected to change significantly before reaching + * stability. It is being made available at this early stage to solicit feedback + * from pioneering adopters on the understanding that any code that uses this + * API will almost certainly be broken (repeatedly) as the API evolves. + *

*/ // This class avoids contamination of clients with wrong imports. - public abstract class TextRegion { - + /** * Returns the offset of the region. - * + * * @return the offset of the region */ public abstract int getOffset(); + /** * Returns the length of the region. - * + * * @return the length of the region */ public abstract int getLength(); - + } \ No newline at end of file