| java.lang.Object com.ibm.richtext.textpanel.TextRange
TextRange | final class TextRange (Code) | | A TextRange represents a range of text bounded by a
start (inclusive), and a limit (exclusive). [start,limit)
|
Constructor Summary | |
public | TextRange(int start, int limit) Create a text range from two ints. | public | TextRange() Create a text range of 0, 0. |
limit | public int limit(Code) | | the end of the range
|
start | public int start(Code) | | the start of the range
|
TextRange | public TextRange(int start, int limit)(Code) | | Create a text range from two ints.
Parameters: start - the start of the run Parameters: limit - the end of the run |
TextRange | public TextRange()(Code) | | Create a text range of 0, 0.
|
|
|