Uses of Interface
com.ibm.dtfj.javacore.parser.framework.scanner.IParserToken
-
-
Uses of IParserToken in com.ibm.dtfj.javacore.parser.framework.parser
Methods in com.ibm.dtfj.javacore.parser.framework.parser that return IParserToken Modifier and Type Method Description IParserToken
ILookAheadBuffer. lookAhead(int depth)
Looks ahead by a depth amount. -
Uses of IParserToken in com.ibm.dtfj.javacore.parser.framework.scanner
Classes in com.ibm.dtfj.javacore.parser.framework.scanner that implement IParserToken Modifier and Type Class Description class
ParserToken
Methods in com.ibm.dtfj.javacore.parser.framework.scanner that return IParserToken Modifier and Type Method Description static IParserToken
TokenManager. getToken(int length, int offset, int lineNumber, String type, String value)
IParserToken
LookAheadBuffer. lookAhead(int depth)
IParserToken
IScanner. next()
Each call to next returns a new token,IParserToken
JavaCoreScanner. next()
-
Uses of IParserToken in com.ibm.dtfj.javacore.parser.framework.tag
Methods in com.ibm.dtfj.javacore.parser.framework.tag that return IParserToken Modifier and Type Method Description protected IParserToken
LineRule. addAllCharactersAsTokenAndConsumeFirstMatch(String type, Matcher matcher)
Grabs all characters up to the first match specified by the matcher, and adds the latter as a token of a argument-specified type to the internal token list.protected IParserToken
LineRule. addAllCharactersAsTokenUntilFirstMatch(String type, Matcher matcher)
Grabs all characters up to but excluding the first match specified by the matcher, and adds the latter as a token of an argument-specified type.protected IParserToken
LineRule. addAllCharactersAsTokenUntilIndex(String type, int endIndex, boolean stripTrailingWhitespace)
Copies all characters from start to endIndex - 1.protected IParserToken
LineRule. addNonPrefixedHexToken(String type)
Matches the first hexadecimal match encountered that is not prefixed by "0x" as a token.protected IParserToken
LineRule. addPrefixedHexToken(String type)
Matches the first prefixed hexadecimal pattern encountered, and adds it as a token.protected IParserToken
LineRule. addToken(String type, String value)
Adds a token of the type specified to the internal token list and assigns it the value specified by the argument.protected IParserToken
LineRule. addToken(String type, Matcher matcher)
Adds a token of the type specified via argument to the internal token map, and assigns it the value matched by the pattern matcher.IParserToken
ITagAttributeResult. getAttributeValue(String attribute)
Methods in com.ibm.dtfj.javacore.parser.framework.tag with parameters of type IParserToken Modifier and Type Method Description protected void
LineRule. addToken(IParserToken token)
Adds a non-null token to the token map. -
Uses of IParserToken in com.ibm.dtfj.javacore.parser.j9
Methods in com.ibm.dtfj.javacore.parser.j9 that return IParserToken Modifier and Type Method Description IParserToken
IAttributeValueMap. getToken(String tokenType)
IParserToken
JavaCoreAttributeValueMap. getToken(String tokenType)
protected IParserToken
SectionParserGrammar. lookAhead(int depth)
Methods in com.ibm.dtfj.javacore.parser.j9 with parameters of type IParserToken Modifier and Type Method Description protected IAttributeValueMap
SectionParserGrammar. getLineRuleResults(IParserToken token)
protected boolean
SectionParserGrammar. isValidJavaCoreTag(IParserToken token)
-
Uses of IParserToken in com.ibm.dtfj.javacore.parser.j9.section.monitor
Methods in com.ibm.dtfj.javacore.parser.j9.section.monitor that return IParserToken Modifier and Type Method Description protected IParserToken
MonitorObjectLineRule. addHexToken(String token)
-