1 9 package javolution.lang; 10 11 import j2me.lang.CharSequence; 12 13 import java.io.IOException; 14 15 23 public interface Appendable { 24 25 31 Appendable append(char c) throws IOException; 32 33 39 Appendable append(CharSequence csq) throws IOException; 40 41 49 Appendable append(CharSequence csq, int start, int end) throws IOException; 50 51 } | Popular Tags |