Package jade.lang.acl
Class SimpleCharStream
- java.lang.Object
-
- jade.lang.acl.SimpleCharStream
-
public class SimpleCharStream extends Object
An implementation of interface CharStream, where the stream is assumed to contain only ASCII characters (without unicode processing).
-
-
Field Summary
Fields Modifier and Type Field Description protected int[]bufcolumnprotected char[]bufferprotected int[]buflineintbufposprotected intcolumnprotected intinBufprotected ReaderinputStreamprotected intlineprotected intmaxNextCharIndprotected booleanprevCharIsCRprotected booleanprevCharIsLFstatic booleanstaticFlag
-
Constructor Summary
Constructors Constructor Description SimpleCharStream(InputStream dstream)SimpleCharStream(InputStream dstream, int startline, int startcolumn)SimpleCharStream(InputStream dstream, int startline, int startcolumn, int buffersize)SimpleCharStream(Reader dstream)SimpleCharStream(Reader dstream, int startline, int startcolumn)SimpleCharStream(Reader dstream, int startline, int startcolumn, int buffersize)
-
Method Summary
All Methods Instance Methods Concrete Methods Deprecated Methods Modifier and Type Method Description voidadjustBeginLineColumn(int newLine, int newCol)Method to adjust line and column numbers for the start of a token.voidbackup(int amount)charBeginToken()voidDone()protected voidExpandBuff(boolean wrapAround)protected voidFillBuff()intgetBeginColumn()intgetBeginLine()intgetColumn()Deprecated.intgetEndColumn()intgetEndLine()StringGetImage()intgetLine()Deprecated.char[]GetSuffix(int len)charreadChar()voidReInit(InputStream dstream)voidReInit(InputStream dstream, int startline, int startcolumn)voidReInit(InputStream dstream, int startline, int startcolumn, int buffersize)voidReInit(Reader dstream)voidReInit(Reader dstream, int startline, int startcolumn)voidReInit(Reader dstream, int startline, int startcolumn, int buffersize)protected voidUpdateLineColumn(char c)
-
-
-
Field Detail
-
staticFlag
public static final boolean staticFlag
- See Also:
- Constant Field Values
-
bufpos
public int bufpos
-
bufline
protected int[] bufline
-
bufcolumn
protected int[] bufcolumn
-
column
protected int column
-
line
protected int line
-
prevCharIsCR
protected boolean prevCharIsCR
-
prevCharIsLF
protected boolean prevCharIsLF
-
inputStream
protected Reader inputStream
-
buffer
protected char[] buffer
-
maxNextCharInd
protected int maxNextCharInd
-
inBuf
protected int inBuf
-
-
Constructor Detail
-
SimpleCharStream
public SimpleCharStream(Reader dstream, int startline, int startcolumn, int buffersize)
-
SimpleCharStream
public SimpleCharStream(Reader dstream, int startline, int startcolumn)
-
SimpleCharStream
public SimpleCharStream(Reader dstream)
-
SimpleCharStream
public SimpleCharStream(InputStream dstream, int startline, int startcolumn, int buffersize)
-
SimpleCharStream
public SimpleCharStream(InputStream dstream, int startline, int startcolumn)
-
SimpleCharStream
public SimpleCharStream(InputStream dstream)
-
-
Method Detail
-
ExpandBuff
protected void ExpandBuff(boolean wrapAround)
-
FillBuff
protected void FillBuff() throws IOException- Throws:
IOException
-
BeginToken
public char BeginToken() throws IOException- Throws:
IOException
-
UpdateLineColumn
protected void UpdateLineColumn(char c)
-
readChar
public char readChar() throws IOException- Throws:
IOException
-
getColumn
public int getColumn()
Deprecated.- See Also:
getEndColumn()
-
getLine
public int getLine()
Deprecated.- See Also:
getEndLine()
-
getEndColumn
public int getEndColumn()
-
getEndLine
public int getEndLine()
-
getBeginColumn
public int getBeginColumn()
-
getBeginLine
public int getBeginLine()
-
backup
public 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)
-
ReInit
public void ReInit(InputStream dstream, int startline, int startcolumn)
-
GetImage
public String GetImage()
-
GetSuffix
public 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.
-
-