01: package java.io;
02:
03: import gnu.java.io.EncodingManager;
04: import gnu.java.io.decode.Decoder;
05:
06: public class InputStreamReader extends Reader {
07: public InputStreamReader(InputStream in) {
08: }
09:
10: public InputStreamReader(InputStream in, String encoding_name)
11: throws UnsupportedEncodingException {
12: }
13:
14: public void close() throws IOException {
15: }
16:
17: public String getEncoding() {
18: }
19:
20: public boolean ready() throws IOException {
21: }
22:
23: public int read(char[] buf, int offset, int length)
24: throws IOException {
25: }
26:
27: public int read() throws IOException {
28: }
29:
30: public long skip(long count) throws IOException {
31: }
32: }
|