Uses of Class
org.ourgrid.common.spec.token.Token

Packages that use Token
org.ourgrid.common.spec   
org.ourgrid.common.spec.lexical   
org.ourgrid.common.spec.semantic   
org.ourgrid.common.spec.token   
 

Uses of Token in org.ourgrid.common.spec
 

Methods in org.ourgrid.common.spec with parameters of type Token
static java.lang.String CompilerMessages.SYNTACTICAL_COMPILATION_PROBLEM(Token actualToken, java.lang.String nextSymbolExpected)
           
 

Uses of Token in org.ourgrid.common.spec.lexical
 

Methods in org.ourgrid.common.spec.lexical that return Token
 Token LexicalAnalyzer.getToken()
          This is the main function of the lexical analyzer.
 Token CommonLexicalAnalyzer.getToken()
           
 Token LexicalAnalyzer.getToken(TokenDelimiter delimiters)
          It will read the next string from source and return the token it represents.
 Token CommonLexicalAnalyzer.getToken(TokenDelimiter delimiters)
           
 

Uses of Token in org.ourgrid.common.spec.semantic
 

Methods in org.ourgrid.common.spec.semantic with parameters of type Token
 void SemanticAnalyzer.performAction(java.lang.String action, Token token)
          This is the interface method for the semantic actions.
 void SemanticActions.performAction(java.lang.String action, Token token)
           
 void SDFSemanticActions.performAction(java.lang.String action, Token token)
           
 void JDFSemanticActions.performAction(java.lang.String action, Token token)
           
 void GDFSemanticActions.performAction(java.lang.String action, Token token)
           
 void CommonSemanticAnalyzer.performAction(java.lang.String action, Token token)
           
 

Uses of Token in org.ourgrid.common.spec.token
 

Subclasses of Token in org.ourgrid.common.spec.token
 class Operator
          It is a Token object that is recognized as an Operator at the CodesTable
 class Parenthetic
          It is a Token object that is recognized as an Parenthetic at the CodesTable.
 class Pointing
          This is a token entity that recognize punctuation symbols.
 class StringToken
          It is a Token object that is recognized as a string at the CodesTable.
 

Methods in org.ourgrid.common.spec.token that return Token
 Token Operator.readOperator(char theChar, CharReader reader)
          Check if the character passed as parameter initializes an Operator.
 Token Parenthetic.readParantizer(char theChar, CharReader reader)
          Checks if the character passed as paramether is a Parenthetic.
 Token Pointing.readPointing(char theChar, CharReader reader)
          Tries to recognize a punctuation symbol and return a token using this symbol.
 Token StringToken.readString(CharReader reader, TokenDelimiter delimiters)
          Generalizes the token reading process when considering the token delimiters desired.
 Token StringToken.readStringToken(java.lang.String firstPart, CharReader reader)
          Check if the character passed as paramether is part of a string.