2 // This software is now distributed according to
3 // the Lesser Gnu Public License. Please see
4 // http://www.gnu.org/copyleft/lesser.txt for
11 * An abstraction of the StringBuffer which only implements a subset of
12 * StringBuffer's methods.
14 public interface BasicStringBufferLike
16 public void append(char c);
18 public void append(String s);
20 public StringLike toStringLike();
22 public Object unwrap();