Methods Summary |
---|
protected antlr.Token | makeToken(int i)
HqlToken token = ( HqlToken ) super.makeToken( i );
token.setPossibleID( possibleID );
possibleID = false;
return token;
|
public void | panic()
//overriden to avoid System.exit
panic("CharScanner: panic");
|
public void | panic(java.lang.String s)
//overriden to avoid System.exit
throw new QueryException(s);
|
protected void | setPossibleID(boolean possibleID)
this.possibleID = possibleID;
|
public void | setTokenObjectClass(java.lang.String cl)
// Ignore the token class name parameter, and use a specific token class.
super.setTokenObjectClass( HqlToken.class.getName() );
|
public int | testLiteralsTable(int i)
int ttype = super.testLiteralsTable( i );
return ttype;
|