Uses of Class
edu.hws.jcm.data.ParserContext

Packages that use ParserContext
edu.hws.jcm.awt   
edu.hws.jcm.data   
edu.hws.jcm.functions   
 

Uses of ParserContext in edu.hws.jcm.awt
 

Methods in edu.hws.jcm.awt with parameters of type ParserContext
 void DataTableInput.doParse(Parser parser, ParserContext context)
          Required by the ParserExtension interface and not meant to be called directly.
 

Uses of ParserContext in edu.hws.jcm.data
 

Fields in edu.hws.jcm.data declared as ParserContext
 ParserContext ParseError.context
          The parsing context that was in effect at the time the error occurred.
 

Methods in edu.hws.jcm.data with parameters of type ParserContext
 void ParserExtension.doParse(Parser parser, ParserContext context)
          Parses the part of an expression string associated with this ParserExtension.
 boolean Parser.parseExpression(ParserContext context)
          Called as part of the parsing process.
 boolean Parser.parseFactor(ParserContext context)
          Called as part of the parsing process.
 boolean Parser.parseLogicalExpression(ParserContext context)
          Called as part of the parsing process.
 boolean Parser.parseLogicalFactor(ParserContext context)
          Called as part of the parsing process.
 boolean Parser.parseLogicalTerm(ParserContext context)
          Called as part of the parsing process.
 boolean Parser.parsePrimary(ParserContext context)
          Called as part of the parsing process.
 boolean Parser.parseRelation(ParserContext context)
          Called as part of the parsing process.
 boolean Parser.parseTerm(ParserContext context)
          Called as part of the parsing process.
 

Constructors in edu.hws.jcm.data with parameters of type ParserContext
ParseError(java.lang.String message, ParserContext context)
          Create a new ParseError with a given error message and parsing context.
 

Uses of ParserContext in edu.hws.jcm.functions
 

Methods in edu.hws.jcm.functions with parameters of type ParserContext
 void FunctionParserExtension.doParse(Parser parser, ParserContext context)
          If this ParserExtension is registered with a parser and the parser encounters the name of the function in the string it is parsing, then the parser will call this routine.
 void SummationParser.doParse(Parser parser, ParserContext context)
          When the name of this ParserExtension is encountered by a parser with which the extension is registered, the parser calls this routine to parse the summation subexpression.