| javolution.text.Appendable
All known Subclasses: javolution.text.TextBuilder,
Appendable | public interface Appendable (Code) | | This class is equivalent to java.lang.Appendable
and is moved (refactored) to the java.lang system
package for applications targetting the J2SE 5.0+ run-time.
author: Jean-Marie Dautelle version: 2.0, November 26, 2004 |
append | Appendable append(char c) throws IOException(Code) | | Appends the specified character.
Parameters: c - the character to append. this |
append | Appendable append(CharSequence csq, int start, int end) throws IOException(Code) | | Appends a subsequence of the specified character sequence.
Parameters: csq - the character sequence to append. Parameters: start - the index of the first character to append. Parameters: end - the index after the last character to append. this |
|
|