Lines Matching defs:Appendable
32 * <tt>Appendable</tt> interface must be implemented by any class whose
51 public interface Appendable {
54 * Appends the specified character sequence to this <tt>Appendable</tt>.
64 * appended to this Appendable.
66 * @return A reference to this <tt>Appendable</tt>
71 Appendable append(CharSequence csq) throws IOException;
75 * <tt>Appendable</tt>.
97 * @return A reference to this <tt>Appendable</tt>
107 Appendable append(CharSequence csq, int start, int end) throws IOException;
110 * Appends the specified character to this <tt>Appendable</tt>.
115 * @return A reference to this <tt>Appendable</tt>
120 Appendable append(char c) throws IOException;