| Class | Line # | Actions | |||
|---|---|---|---|---|---|
| BasicStringBufferLike | 14 | 0 | 0 |
| 1 | package // | |
| 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 | |
| 5 | // the details. | |
| 6 | // -- Happy Computing! | |
| 7 | // | |
| 8 | com.stevesoft.pat; | |
| 9 | ||
| 10 | /** | |
| 11 | * An abstraction of the StringBuffer which only implements a subset of | |
| 12 | * StringBuffer's methods. | |
| 13 | */ | |
| 14 | public interface BasicStringBufferLike | |
| 15 | { | |
| 16 | public void append(char c); | |
| 17 | ||
| 18 | public void append(String s); | |
| 19 | ||
| 20 | public StringLike toStringLike(); | |
| 21 | ||
| 22 | public Object unwrap(); | |
| 23 | } |