Uses of Class
jd.xml.xslt.parser.XsltParseException

Packages that use XsltParseException
jd.xml.xslt Contains a XSLT Version 1.1 implementation. 
jd.xml.xslt.parser Contains parser classes for stylesheets, stylesheet templates elements and patterns. 
 

Uses of XsltParseException in jd.xml.xslt
 

Methods in jd.xml.xslt that throw XsltParseException
 void Stylesheet.setup(XmlSource xslSource)
          Setup the stylesheet from the given stylesheet document.
 

Uses of XsltParseException in jd.xml.xslt.parser
 

Methods in jd.xml.xslt.parser that return XsltParseException
 XsltParseException XsltParseContext.createException(String message)
           
 XsltParseException XsltParseContext.createException(String message, Exception e)
           
 XsltParseException XsltParseContext.createException(String message, XPathNode node)
           
 XsltParseException XsltParseContext.createException(String message, XPathNode node, Exception e)
           
 

Methods in jd.xml.xslt.parser that throw XsltParseException
 void XsltParseContext.setDocumentBaseUri(String baseUri)
          Set the base uri of the current parsed stylesheet document.
 void XsltParseContext.setCurrentElement(XPathNode element)
          Set the current parsed element (either a stylesheet or a literal element).
 void XsltParseContext.addNamedTemplateRule(String name, TemplateRule templateRule)
           
 TemplateRuleList XsltParseContext.getRuleList(String mode)
           
 VariableName XsltParseContext.getVariableName(String qname)
          Return the VariableName for the given name from a XPath VariableReference.
 VariableName XsltParseContext.addVariableName(String qname, int variableType)
          Register the name of a variable or parameter.
 void XsltParseContext.addGlobalVariable(Variable variable)
          Add a toplevel Variable.
 String XsltParseContext.setExcludedNamespace(String prefix)
          Mark a namespace as excluded for the current element.
 void XsltParseContext.setExtensionNamespace(String prefix)
          Mark a namespace as extension namespace for the current element.
 String XsltParseContext.getExpandedName(String qname)
          Return the expanded name for a qname in respect to the current namespace.
 String XsltParseContext.getCheckedNamespaceUri(String prefix)
          Return the namespace uri for the prefix.
 void XsltParseContext.addCDataSectionElements(String qnames, OutputFormatTemplate oft)
           
 void XsltParseContext.beginInclude(String newBaseUri)
           
 void XsltParseContext.finish(StylesheetData data)
          Parsing is finished.
 void VariableSorter.sort(XsltParseContext context, Variable[] variables)
           
 Template TemplateParser.parse(XPathNode node)
          Parse a template node, its children and siblings.
(package private)  CreateAttribute TemplateParser.parseAttribute(XPathNode element, AttributeIterator attributes)
          
(package private)  Variable TemplateParser.parseVariable(XPathNode element, int variableType, AttributeIterator attributes)
          
(package private)  Variable TemplateParser.parseVariable(XPathNode element, int variableType, AttributeIterator attributes, boolean isGlobal)
           
(package private)  Vector TemplateParser.parseVariable(XPathNode element, int variableType, Vector vars)
           
(package private)  AttributeValue TemplateParser.parseOutputFormat(AttributeIterator attributes, OutputFormatTemplate formatTemplate, boolean isOutputInstruction)
          Parse a xsl:output or xsl:document instruction.
protected  void TemplateParser.expectExtensionElement(XPathNode parent, XPathNode node, String uri, String localName)
          Test if a node is a extension element
 StylesheetData StylesheetParser.parseStylesheet(XmlSource source)
          Parse a stylesheet.
protected  AttributeIterator Parser.setCurrentElement(XPathNode element, boolean isStylesheetElem)
          Set the current parsed element (either a stylesheet or a literal element) and return an iterator for all relevant attributes of the element.
protected  AttributeIterator Parser.setCurrentElement(XPathNode element)
          Calls setCurrentElement(element, true).
protected  void Parser.parseExcludeResultPrefixes(XPathNode attribute)
           
protected  void Parser.parseExtensionElementPrefixes(XPathNode attribute)
           
protected  void Parser.throwException(String message)
           
protected  void Parser.reportMissingAttribute(String name)
           
protected  void Parser.reportInvalidChild(XPathNode child, boolean ignoreWhitespaceText)
           
 void GlobalVariableNames.checkPreliminariesResolved()
          Return the first VariableName which is flagged as preliminary.
 boolean AttributeIterator.getBoolean(String trueValue, String falseValue, boolean defaultValue)
          Return the value of the current attribute as a boolean.
 char AttributeIterator.getChar()
          Return the value of the current attribute as an boolean.
 String AttributeIterator.getExpandedName()
          Return an expanded name which has qname equals to the current attribute value.
 String[] AttributeIterator.getExpandedNames()
          Return a list of expanded names from the whitespace separated list of qnames equal to the current attribute value.
 Expression AttributeIterator.getExpression()
          Return the value of the current attribute as a parsed expression.
 Pattern AttributeIterator.getPattern()
          Return the value of the current attribute as a parsed pattern.
 void AttributeIterator.reportInvalidAttribute()
          An invalid attribute was detected.
 void AttributeIterator.reportInvalidAttributeValue()
          An invalid attribute was detected.