Uses of Class
jd.xml.xpath.parser.Scanner

Packages that use Scanner
jd.xml.xpath.parser Contains the XPath expression parser. 
jd.xml.xslt.parser Contains parser classes for stylesheets, stylesheet templates elements and patterns. 
 

Uses of Scanner in jd.xml.xpath.parser
 

Methods in jd.xml.xpath.parser with parameters of type Scanner
 Expression ExpressionParser.parseExpression(Scanner scanner)
          Parse the production rule: Expr ::= OrExpr
protected  VariableReference ExpressionParser.parseVariableReference(Scanner scanner)
           
protected  Expression ExpressionParser.createFunction(Scanner scanner, String functionName, Expression[] arguments)
          Create a function call expression for a function with the given name and arguments.
protected  NodeTest ExpressionParser.parseNodeTest(Scanner scanner)
           
protected  NodeTest ExpressionParser.parseNodeTest(Scanner scanner, String name)
           
 NodeNameTest ExpressionParser.parseNodeNameTest(Scanner scanner, String qname, boolean useNamePool)
           
protected  String ExpressionParser.getNamespaceUri(Scanner scanner, String prefix)
          Return the namespace uri for the given prefix.
 

Uses of Scanner in jd.xml.xslt.parser
 

Methods in jd.xml.xslt.parser with parameters of type Scanner
protected  Expression PatternParser.createFunction(Scanner scanner, String functionName, Expression[] arguments)