Generated by
JDiff

Class java.lang.StringBuffer

Documentation changed from old to new.

Changed Methods
StringBuffer delete(int, int) Documentation changed from old to new.
Removes the characters in a substring of this StringBuffer.
StringBuffer deleteCharAt(int) Documentation changed from old to new.
Removes the character at the specified position in this StringBuffer (shortening the StringBuffer by one character).
void getChars(int, int, char[], int) Documentation changed from old to new.
Characters are copied from this string buffer into the destination character array dst.
StringBuffer replace(int, int, String) Documentation changed from old to new.
Replaces the characters in a substring of this StringBuffer with characters in the specified String.
StringBuffer append(char) Documentation changed from old to new.
Appends the string representation of the char argument to this string buffer.
StringBuffer insert(int, char[]) Documentation changed from old to new.
Inserts the string representation of the char array argument into this string buffer.
StringBuffer insert(int, char[], int, int) Documentation changed from old to new.
Inserts the string representation of a subarray of the str array argument into this string buffer.
StringBuffer insert(int, Object) Documentation changed from old to new.
Inserts the string representation of the Object argument into this string buffer.
StringBuffer insert(int, char) Documentation changed from old to new.
Inserts the string representation of the char argument into this string buffer.
StringBuffer insert(int, double) Documentation changed from old to new.
Inserts the string representation of the double argument into this string buffer.
StringBuffer insert(int, float) Documentation changed from old to new.
Inserts the string representation of the float argument into this string buffer.
StringBuffer insert(int, int) Documentation changed from old to new.
Inserts the string representation of the second int argument into this string buffer.
StringBuffer insert(int, long) Documentation changed from old to new.
Inserts the string representation of the long argument into this string buffer.
String substring(int) Documentation changed from old to new.
Returns a new String that contains a subsequence of characters currently contained in this StringBuffer.The substring begins at the specified index and extends to the end of the StringBuffer.
String substring(int, int) Documentation changed from old to new.
Returns a new String that contains a subsequence of characters currently contained in this StringBuffer.