EVALUATION
Name: nl37777 Date: 02/04/2003
StringBuffer.append methods that accept CharSequence are
being considered as part of one approach to supporting supplementary
Unicode characters (JSR 204).
======================================================================
Proposed addtion is:
public StringBuffer append(CharSequence s)
public StringBuffer append(CharSequence s, int index, int len)
public StringBuffer insert(int offset, CharSequence s)
public StringBuffer insert(int offset, CharSequence s, int index, int len)
###@###.### 2003-02-14
Approved for Tiger.
###@###.### 2003-04-23
Name: nl37777 Date: 04/13/2004
The new methods were changed to use start/end convention
instead of start/length. See 5019111.
======================================================================
|