Uses of Class
xjavadoc.Token

Packages that use Token
xjavadoc   
 

Uses of Token in xjavadoc
 

Fields in xjavadoc declared as Token
private  Token AbstractProgramElement._javadocToken
           
private  Token XDoc._javadocToken
          Token (which is linked in the AST) that holds the string representation of the doc.
private  Token SimpleParser._nameToken
           
private  Token NodeParser._nameToken
           
private  Token AbstractProgramElement._token
           
 Token ParseException.currentToken
          This is the last token that has been consumed successfully.
(package private)  Token SimpleParser.JJCalls.first
           
protected  Token SimpleNode.first
           
(package private)  Token NodeParser.JJCalls.first
           
private  Token SimpleParser.jj_lastpos
           
private  Token NodeParser.jj_lastpos
           
 Token SimpleParser.jj_nt
          Next token.
 Token NodeParser.jj_nt
          Next token.
private  Token SimpleParser.jj_scanpos
           
private  Token NodeParser.jj_scanpos
           
protected  Token SimpleNode.last
           
 Token Token.next
          A reference to the next regular (non-special) token from the input stream.
 Token Token.specialToken
          This field is used to access special tokens that occur prior to this token, but after the immediately preceding regular (non-special) token.
 Token SimpleParser.token
          Current token.
 Token NodeParser.token
          Current token.
 

Methods in xjavadoc that return Token
 Token SimpleNode.getFirstToken()
           
 Token SimpleNode.getLastToken()
           
 Token NodeParserTokenManager.getNextToken()
          Get the next Token.
 Token SimpleParser.getNextToken()
          Get the next Token.
 Token SimpleParserTokenManager.getNextToken()
          Get the next Token.
 Token NodeParser.getNextToken()
          Get the next Token.
 Token JavaParser.getToken(int i)
          Gets the Token attribute of the JavaParser object.
 Token SimpleParser.getToken(int index)
          Get the specific Token.
 Token NodeParser.getToken(int index)
          Get the specific Token.
private  Token SimpleParser.jj_consume_token(int kind)
           
private  Token NodeParser.jj_consume_token(int kind)
           
protected  Token NodeParserTokenManager.jjFillToken()
           
protected  Token SimpleParserTokenManager.jjFillToken()
           
static Token Token.newToken(int ofKind)
           
static Token Token.newToken(int ofKind, java.lang.String image)
          Returns a new Token object, by default.
 Token SimpleParser.PrimitiveType()
           
 Token NodeParser.PrimitiveType()
           
 

Methods in xjavadoc with parameters of type Token
private static void NodePrinter.print(Token t, java.io.PrintWriter out)
          Describe what the method does
private static void SimpleParser.setToken(AbstractProgramElement element, Token token)
           
private static void NodeParser.setToken(AbstractProgramElement element, Token token)
           
 void AbstractProgramElement.setToken(Token token)
          Sets the Token where we start.
(package private)  void NodeParserTokenManager.SkipLexicalActions(Token matchedToken)
           
(package private)  void SimpleParserTokenManager.SkipLexicalActions(Token matchedToken)
           
 

Constructors in xjavadoc with parameters of type Token
ParseException(Token currentTokenVal, int[][] expectedTokenSequencesVal, java.lang.String[] tokenImageVal)
          This constructor is used by the method "generateParseException" in the generated parser.
XDoc(Token javadocToken, XProgramElement owner, XTagFactory tagFactory)
          Describe what the XDoc constructor does