Package bbd.jportal2

Class 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 Detail

      • staticFlag

        public static final boolean staticFlag
        Whether parser is static.
        See Also:
        Constant Field Values
      • bufpos

        public static int bufpos
        Position in buffer.
      • bufline

        protected static int[] bufline
      • bufcolumn

        protected static int[] bufcolumn
      • column

        protected static int column
      • line

        protected static int line
      • prevCharIsCR

        protected static boolean prevCharIsCR
      • prevCharIsLF

        protected static boolean prevCharIsLF
      • inputStream

        protected static Reader inputStream
      • buffer

        protected static char[] buffer
      • maxNextCharInd

        protected static int maxNextCharInd
      • inBuf

        protected static int inBuf
      • tabSize

        protected static int tabSize
      • trackLineColumn

        protected static boolean trackLineColumn
    • Method Detail

      • setTabSize

        public static void setTabSize​(int i)
      • getTabSize

        public static int getTabSize()
      • ExpandBuff

        protected static void ExpandBuff​(boolean wrapAround)
      • UpdateLineColumn

        protected static void UpdateLineColumn​(char c)
      • getEndColumn

        public static int getEndColumn()
        Get token end column number.
      • getEndLine

        public static int getEndLine()
        Get token end line number.
      • getBeginColumn

        public static int getBeginColumn()
        Get token beginning column number.
      • getBeginLine

        public static int getBeginLine()
        Get token beginning line number.
      • backup

        public static void backup​(int amount)
        Backup a number of characters.
      • ReInit

        public void ReInit​(Reader dstream,
                           int startline,
                           int startcolumn,
                           int buffersize)
        Reinitialise.
      • ReInit

        public void ReInit​(Reader dstream,
                           int startline,
                           int startcolumn)
        Reinitialise.
      • ReInit

        public void ReInit​(Reader dstream)
        Reinitialise.
      • ReInit

        public void ReInit​(InputStream dstream,
                           int startline,
                           int startcolumn,
                           int buffersize)
        Reinitialise.
      • ReInit

        public void ReInit​(InputStream dstream)
        Reinitialise.
      • ReInit

        public void ReInit​(InputStream dstream,
                           int startline,
                           int startcolumn)
        Reinitialise.
      • GetImage

        public static String GetImage()
        Get token literal value.
      • GetSuffix

        public static char[] GetSuffix​(int len)
        Get the suffix.
      • Done

        public static void Done()
        Reset buffer when finished.
      • adjustBeginLineColumn

        public static void adjustBeginLineColumn​(int newLine,
                                                 int newCol)
        Method to adjust line and column numbers for the start of a token.