Uses of Class
com.g11ntoolkit.token.Token

Packages that use Token
com.g11ntoolkit.levblock The set of classes that make up the LevBlock support for the G11NToolKit. 
com.g11ntoolkit.parser.java The set of classes that make up the Java File Parser support for the G11NToolKit. 
com.g11ntoolkit.strfile The set of classes that make up the StrFile support for the G11NToolKit. 
com.g11ntoolkit.token The set of classes that make up the Token support for the G11NToolKit. 
com.g11ntoolkit.tokenizer The set of classes that make up the Tokenizer support for the G11NToolKit. 
com.g11ntoolkit.tokfile The set of classes that make up the TokFile support for the G11NToolKit. 
 

Uses of Token in com.g11ntoolkit.levblock
 

Fields in com.g11ntoolkit.levblock declared as Token
private  Token LeverageBlock.token
          The token for this block.
 

Methods in com.g11ntoolkit.levblock that return Token
 Token LeverageBlock.getToken()
          Returns the token for this block.
 

Methods in com.g11ntoolkit.levblock with parameters of type Token
 void LeverageBlock.setToken(Token aToken)
          Sets the token for this block.
 void LeverageBlock.setToken(Token aToken, java.lang.String aComment)
          Sets the token and its comments for this block.
 

Constructors in com.g11ntoolkit.levblock with parameters of type Token
LeverageBlock(Token aToken)
          Creates an instance of LeverageBlock for the specified token.
LeverageBlock(Token aToken, XLEntry aSource, XLEntry aTarget)
          Creates an instance of LeverageBlock for the specified token, source entry, and target entry.
 

Uses of Token in com.g11ntoolkit.parser.java
 

Fields in com.g11ntoolkit.parser.java declared as Token
protected  Token LTTreeWalker.token
          The Token object to use to generate tokens for each extracted string.
 

Methods in com.g11ntoolkit.parser.java with parameters of type Token
 void LTVisitor.setTokenObject(Token tk)
          Sets the com.g11ntoolkit.token.Token object to be used by the Tree Walker.
 void LTTreeWalker.setTokenObject(Token tk)
          Sets the com.g11ntoolkit.token.Token object to be used by the Tree Walker.
 void LTParserVisitor.setTokenObject(Token tk)
          Sets the com.g11ntoolkit.token.Token object to be used by the Tree Walker.
 

Uses of Token in com.g11ntoolkit.strfile
 

Fields in com.g11ntoolkit.strfile declared as Token
(package private)  Token LTXMLJSSFParser.token
          Contains the tokens for each of the string blocks.
 

Methods in com.g11ntoolkit.strfile with parameters of type Token
 XLEntry StrFile.getString(Token aToken)
          Returns the string translation entry for the specified token.
 boolean StrFile.findToken(Token aToken)
          Returns true if the specified token is in the file.
 void StrFile.append(Token aToken, XLEntry aString)
          Adds the specified token and string translation entry to the hashtable.
 JSXLEntry JSStrFile.getJSString(Token aToken)
          Returns the string translation entry for the specified token.
 void JSStrFile.append(Token aToken, JSXLEntry aBlock)
          Adds the specified token and string translation entry to the hashtable.
 

Uses of Token in com.g11ntoolkit.token
 

Methods in com.g11ntoolkit.token with parameters of type Token
 int Token.compareTo(Token anotherToken)
          Shows how the specified Token compares to this Token.
 boolean Token.equals(Token anotherToken)
          Tests if the specified Token is equal to this Token.
 

Uses of Token in com.g11ntoolkit.tokenizer
 

Fields in com.g11ntoolkit.tokenizer declared as Token
protected static Token TokXMLFile.token
          The Token object to use to generate tokens for each extracted string.
protected static Token FileTokenizer.token
          The token is used to get the unique token numbers.
 

Methods in com.g11ntoolkit.tokenizer that return Token
 Token FileTokenizer.getToken(TokContext key)
          Returns the token for a specified key in the tokenized file.
 

Methods in com.g11ntoolkit.tokenizer with parameters of type Token
static boolean TokXMLFile.isToken(java.lang.String str, Token tok)
          Returns true if the string is a token.
 TokContext FileTokenizer.getKey(Token token)
          Returns the key for a specified token in the tokenized file.
 void FileTokenizer.setContext(TokContext ctxt, Token tok)
          Saves the association between a context in the tokenized file and its token.
 

Constructors in com.g11ntoolkit.tokenizer with parameters of type Token
TokXMLFile(java.lang.String anEncoding, java.util.Locale aLocale, Token aToken, java.lang.String propFile)
          This constructor is used to establish an instance of the class and save all the input information for use in processing the file.
TokSQLFile(java.lang.String anEncoding, java.util.Locale aLocale, Token aToken)
          Establishes an instance of the class and saves all the input information for use in processing the file.
TokRC(java.lang.String anEncoding, java.util.Locale aLocale, Token aToken)
          Establishes an instance of the class and saves all the input information for use in processing the file.
TokPropertyResourceBundle(java.lang.String anEncoding, java.util.Locale aLocale, Token aToken)
          Establishes an instance of the class and saves all the input information for use in processing the file.
TokMC(java.lang.String anEncoding, java.util.Locale aLocale, Token aToken)
          Establishes an instance of the class and saves all the input information for use in processing the file.
TokListResourceBundle(java.util.Locale aLocale, Token aToken)
          Establishes an instance of the class and saves all the input information for use in processing the file.
TokJSFile(java.lang.String anEncoding, java.util.Locale aLocale, Token aToken)
          Establishes an instance of the class and saves all the input information for use in processing the file.
TokCSSFile(java.lang.String anEncoding, java.util.Locale aLocale, Token aToken)
          Establishes an instance of the class and saves all the input information for use in processing the file.
FileTokenizer(java.lang.String anEncoding, java.util.Locale aLocale, Token aToken)
          Used by the subclasses to establish an instance of the class and save all the input information for use in processing the file.
 

Uses of Token in com.g11ntoolkit.tokfile
 

Fields in com.g11ntoolkit.tokfile declared as Token
(package private)  Token LTXMLTFParser.token
          Contains the tokens for each of the string blocks.
 

Methods in com.g11ntoolkit.tokfile that return Token
 Token TokFile.getRevContext(TokContext ctx)
          Returns the token for a specified context in the file.
 

Methods in com.g11ntoolkit.tokfile with parameters of type Token
 void TokFile.setContext(TokContext ctx, Token tok)
          Sets the context for the specified token in the file.
 TokContext TokFile.getContext(Token tok)
          Returns the context for a specified token in the file.
private  void TokFile.setRevContext(Token tok, TokContext ctx)
          Sets the token for each context in the file.
 java.lang.String TokFile.getRecord(Token aToken)
          Returns the record for the specified token.
 void TokFile.replaceString(java.lang.String aString, Token aToken)
          Replaces the specified string with a token.
 void TokFile.replaceToken(Token aToken, java.lang.String aString)
          Replaces the specified token with a string.
 void TokFile.replaceStringWithToken(int strStartRow, int strStartCol, int strEndRow, int strEndCol, Token token)
          Replaces the string in the file image with a token in the buffer.