12 lines
273 B
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;
|
|
}
|