com.lowagie.text.pdf.codec.postscript
Class JavaCharStream
java.lang.Object
com.lowagie.text.pdf.codec.postscript.JavaCharStream
public final class JavaCharStream
- extends Object
An implementation of interface CharStream, where the stream is assumed to
contain only ASCII characters (with java-like unicode escape processing).
Constructor Summary |
JavaCharStream(InputStream dstream)
|
JavaCharStream(InputStream dstream,
int startline,
int startcolumn)
|
JavaCharStream(InputStream dstream,
int startline,
int startcolumn,
int buffersize)
|
JavaCharStream(Reader dstream)
|
JavaCharStream(Reader dstream,
int startline,
int startcolumn)
|
JavaCharStream(Reader dstream,
int startline,
int startcolumn,
int buffersize)
|
Method Summary |
void |
adjustBeginLineColumn(int newLine,
int newCol)
Method to adjust line and column numbers for the start of a token.
|
private void |
AdjustBuffSize()
|
void |
backup(int amount)
|
char |
BeginToken()
|
void |
Done()
|
private void |
ExpandBuff(boolean wrapAround)
|
private void |
FillBuff()
|
int |
getBeginColumn()
|
int |
getBeginLine()
|
int |
getColumn()
Deprecated. |
int |
getEndColumn()
|
int |
getEndLine()
|
String |
GetImage()
|
int |
getLine()
Deprecated. |
char[] |
GetSuffix(int len)
|
(package private) static int |
hexval(char c)
|
private char |
ReadByte()
|
char |
readChar()
|
void |
ReInit(InputStream dstream)
|
void |
ReInit(InputStream dstream,
int startline,
int startcolumn)
|
void |
ReInit(InputStream dstream,
int startline,
int startcolumn,
int buffersize)
|
void |
ReInit(Reader dstream)
|
void |
ReInit(Reader dstream,
int startline,
int startcolumn)
|
void |
ReInit(Reader dstream,
int startline,
int startcolumn,
int buffersize)
|
private void |
UpdateLineColumn(char c)
|
Methods inherited from class java.lang.Object |
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait |
staticFlag
public static final boolean staticFlag
- See Also:
- Constant Field Values
bufpos
public int bufpos
bufsize
int bufsize
available
int available
tokenBegin
int tokenBegin
bufline
private int[] bufline
bufcolumn
private int[] bufcolumn
column
private int column
line
private int line
prevCharIsCR
private boolean prevCharIsCR
prevCharIsLF
private boolean prevCharIsLF
inputStream
private Reader inputStream
nextCharBuf
private char[] nextCharBuf
buffer
private char[] buffer
maxNextCharInd
private int maxNextCharInd
nextCharInd
private int nextCharInd
inBuf
private int inBuf
JavaCharStream
public JavaCharStream(Reader dstream,
int startline,
int startcolumn,
int buffersize)
JavaCharStream
public JavaCharStream(Reader dstream,
int startline,
int startcolumn)
JavaCharStream
public JavaCharStream(Reader dstream)
JavaCharStream
public JavaCharStream(InputStream dstream,
int startline,
int startcolumn,
int buffersize)
JavaCharStream
public JavaCharStream(InputStream dstream,
int startline,
int startcolumn)
JavaCharStream
public JavaCharStream(InputStream dstream)
hexval
static final int hexval(char c)
throws IOException
- Throws:
IOException
ExpandBuff
private final void ExpandBuff(boolean wrapAround)
FillBuff
private final void FillBuff()
throws IOException
- Throws:
IOException
ReadByte
private final char ReadByte()
throws IOException
- Throws:
IOException
BeginToken
public final char BeginToken()
throws IOException
- Throws:
IOException
AdjustBuffSize
private final void AdjustBuffSize()
UpdateLineColumn
private final void UpdateLineColumn(char c)
readChar
public final char readChar()
throws IOException
- Throws:
IOException
getColumn
public final int getColumn()
- Deprecated.
- See Also:
getEndColumn()
getLine
public final int getLine()
- Deprecated.
- See Also:
getEndLine()
getEndColumn
public final int getEndColumn()
getEndLine
public final int getEndLine()
getBeginColumn
public final int getBeginColumn()
getBeginLine
public final int getBeginLine()
backup
public final void backup(int amount)
ReInit
public void ReInit(Reader dstream,
int startline,
int startcolumn,
int buffersize)
ReInit
public void ReInit(Reader dstream,
int startline,
int startcolumn)
ReInit
public void ReInit(Reader dstream)
ReInit
public void ReInit(InputStream dstream,
int startline,
int startcolumn,
int buffersize)
ReInit
public void ReInit(InputStream dstream,
int startline,
int startcolumn)
ReInit
public void ReInit(InputStream dstream)
GetImage
public final String GetImage()
GetSuffix
public final char[] GetSuffix(int len)
Done
public void Done()
adjustBeginLineColumn
public void adjustBeginLineColumn(int newLine,
int newCol)
- Method to adjust line and column numbers for the start of a token.