Generated by
JDiff

Class javax.swing.text.Segment

Added interfaces java.lang.Cloneable, java.text.CharacterIterator.

Added Methods
char current() Gets the character at the current position (as returned by getIndex()).
char first() Sets the position to getBeginIndex() and returns the character at that position.
int getBeginIndex() Returns the start index of the text.
int getEndIndex() Returns the end index of the text.
int getIndex() Returns the current index.
char last() Sets the position to getEndIndex()-1 (getEndIndex() if the text is empty) and returns the character at that position.
char next() Increments the iterator's index by one and returns the character at the new index.
char previous() Decrements the iterator's index by one and returns the character at the new index.
char setIndex(int) Sets the position to the specified position in the text and returns that character.
 

Changed Methods
Object clone() Change in exceptions thrown from CloneNotSupportedException to no exceptions.
Method was inherited from Object, but is now defined locally. Changed from native to non-native. Change of visibility from protected to public.
Creates a shallow copy.