public class TranslateReader extends FilterReader
in
Constructor and Description |
---|
TranslateReader(I2PAppContext ctx,
String bundle,
InputStream in) |
Modifier and Type | Method and Description |
---|---|
void |
close() |
static void |
main(String[] args)
Do not comment out, used to extract tags as a part of the build process.
|
void |
mark(int readLimit) |
boolean |
markSupported() |
int |
read() |
int |
read(char[] cbuf,
int off,
int len) |
boolean |
ready() |
void |
reset() |
long |
skip(long n) |
public TranslateReader(I2PAppContext ctx, String bundle, InputStream in) throws IOException
bundle
- may be null for tagging onlyin
- UTF-8IOException
public int read() throws IOException
read
in class FilterReader
IOException
public int read(char[] cbuf, int off, int len) throws IOException
read
in class FilterReader
IOException
public long skip(long n) throws IOException
skip
in class FilterReader
IOException
public boolean ready() throws IOException
ready
in class FilterReader
IOException
public void close() throws IOException
close
in interface Closeable
close
in interface AutoCloseable
close
in class FilterReader
IOException
public void mark(int readLimit)
mark
in class FilterReader
public void reset() throws IOException
reset
in class FilterReader
IOException
public boolean markSupported()
markSupported
in class FilterReader
public static void main(String[] args)