| 13 | import java.io.IOException; |
| 14 | |
| 15 | public interface Appendable { |
| 16 | public Appendable append(char c) throws IOException; |
| 17 | |
| 18 | public Appendable append(CharSequence sequence) throws IOException; |
| 19 | |
| 20 | public Appendable append(CharSequence sequence, int start, int end) |
| 21 | throws IOException; |
| 22 | } |
no outgoing calls
no test coverage detected