2 // This software is now distributed according to
\r
3 // the Lesser Gnu Public License. Please see
\r
4 // http://www.gnu.org/copyleft/lesser.txt for
\r
6 // -- Happy Computing!
\r
10 /** An abstraction of the StringBuffer which only
\r
11 implements a subset of StringBuffer's methods.
\r
13 public interface BasicStringBufferLike {
\r
14 public void append(char c);
\r
15 public void append(String s);
\r
16 public StringLike toStringLike();
\r
17 public Object unwrap();
\r