* @param in
* the input to the lexer
*/
public void prepareNextInput( Reader in )
{
CharBuffer buf = new CharBuffer( in );
LexerSharedInputState state = new LexerSharedInputState( buf );
this.setInputState( state );
this.setCaseSensitive( savedCaseSensitive );