Constructs a Lexer byte name to process the requested buffer of text.paramlexerName the requested processorparambuffer the data to be processed super(lexerName, buffer);
super(lexerName, buffer);
Gets the firld name.paramline the text to parsereturnthe name of the field to process int i = line.indexOf("="); if (i == -1) return null; else return line.substring(0, i);
int i = line.indexOf("="); if (i == -1) return null; else return line.substring(0, i);
Selects a new lexer byte name.paramlexerName the new processor to use