Package eu.bandm.tools.util2
Class IncludingCharBuf.CharBuf
java.lang.Object
eu.bandm.tools.util2.IncludingCharBuf.CharBuf
- Enclosing class:
 - IncludingCharBuf<D>
 
Auxiliary class for 
IncludingCharBuf, representing exactly
      one source of character data, ie the original file or inserted expansions.- 
Field Summary
FieldsModifier and TypeFieldDescriptionprotected final intprotected char[]The complete data, read in when constructing the object.protected IncludingCharBuf<D>.CharBufChaining to callingCharBufobject.protected intThe length of the complete data, in characters.Position of the lastconsume().protected intCurrent read position.Position of the firstconsume(). - 
Constructor Summary
Constructors - 
Method Summary
Modifier and TypeMethodDescriptionvoidconsume()Advance position counter and line number, if linefeed is detected.voidprotected booleanisNewline(char c) Decide if the next character is a newline FIXME NOT COMPLETE !!charLA(int k) Look ahead to the next k-th character, either in its own data, or in the caller. 
- 
Field Details
- 
location
Position of the lastconsume(). - 
startLocation
Position of the firstconsume(). - 
data
protected char[] dataThe complete data, read in when constructing the object. - 
len
protected int lenThe length of the complete data, in characters. - 
CHUNKSIZE
protected final int CHUNKSIZE- See Also:
 
 - 
pos
protected int posCurrent read position. - 
host
Chaining to callingCharBufobject. 
 - 
 - 
Constructor Details
- 
CharBuf
Create a new buffer, link it viahostto the calling text, and fill it with all character data from r.- Parameters:
 r- sourcebuf- calling predecessorloc- location of the start of the data- Throws:
 IOException
 - 
CharBuf
Create a new buffer, link it viahostto the calling text, and take the array s as its character data.- Parameters:
 s- a character store, directly used by the new buffer.buf- calling predecessorloc- location of the start of the data
 
 - 
 - 
Method Details
- 
fill
- Throws:
 IOException
 - 
LA
public char LA(int k) Look ahead to the next k-th character, either in its own data, or in the caller. The next-to-consume character is looked at with k=0(zero). - 
consume
public void consume()Advance position counter and line number, if linefeed is detected. Return to the including buffer, if this has reached its end, is made by the calling level inIncludingCharBufFIXME WARUM AUSKOMMENTIERT ???? - 
isNewline
protected boolean isNewline(char c) Decide if the next character is a newline FIXME NOT COMPLETE !! 
 -