de.skrueger.xulu.plugin.gnur
Class TextReader

java.lang.Object
  extended by java.io.Reader
      extended by de.skrueger.xulu.plugin.gnur.TextReader
All Implemented Interfaces:
Closeable, Readable

public class TextReader
extends Reader


Constructor Summary
TextReader()
           
 
Method Summary
 int available()
           
 void close()
           
 void mark(int readlimit)
           
 boolean markSupported()
           
 void print(String s)
           
 int read()
           
 int read(char[] b)
           
 int read(char[] cbuf, int off, int len)
           
 void reset()
           
 long skip(long n)
           
 
Methods inherited from class java.io.Reader
read, ready
 
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
 

Constructor Detail

TextReader

public TextReader()
Method Detail

available

public int available()

close

public void close()
Specified by:
close in interface Closeable
Specified by:
close in class Reader

mark

public void mark(int readlimit)
Overrides:
mark in class Reader

markSupported

public boolean markSupported()
Overrides:
markSupported in class Reader

reset

public void reset()
Overrides:
reset in class Reader

skip

public long skip(long n)
Overrides:
skip in class Reader

print

public void print(String s)

read

public int read()
         throws IOException
Overrides:
read in class Reader
Throws:
IOException

read

public int read(char[] b)
         throws IOException
Overrides:
read in class Reader
Throws:
IOException

read

public int read(char[] cbuf,
                int off,
                int len)
         throws IOException
Specified by:
read in class Reader
Throws:
IOException