jvm/classes/java/lang/Appendable.java

12 lines
273 B
Java

package java.lang;
import java.io.IOException;
public interface Appendable {
Appendable append(char c) throws IOException;
Appendable append(CharSequence csq) throws IOException;
Appendable append(CharSequence csq, int start, int end) throws IOException;
}