Uses of Class
jd.xml.xslt.XsltException

Packages that use XsltException
jd.xml.xslt Contains a XSLT Version 1.1 implementation. 
jd.xml.xslt.extension Contains support for extension functions defined by the XSLT script element. 
jd.xml.xslt.extension.exslt Contains support for extensions defined by EXSLT
jd.xml.xslt.result Contains classes to output the result of an XSLT tranformation. 
jd.xml.xslt.result.output   
jd.xml.xslt.template Contains classes representing the various XSLT template elements and instructions. 
jd.xml.xslt.util Contains XSLT related utility classes. 
 

Uses of XsltException in jd.xml.xslt
 

Methods in jd.xml.xslt that throw XsltException
static XsltContext XsltContext.cast(XPathContext context)
          Cast the XPathContext to a XsltContext.
 DecimalFormat XsltContext.getDecimalFormat(String pattern, String formatUri, String formatName)
          Return the decimal format for the given pattern and name.
static String XsltContext.getNamespaceUri(NamespaceContext nscontext, String prefix)
          Map a prefix to a namespace uri.
static String XsltContext.getNamespaceUri(NamespaceContext nscontext, String prefix, boolean mustExist)
          Map a prefix to a namespace uri.
 void Transformation.transform(XmlSource source, XsltResult result)
          Transform the source to the result.
abstract  void Transformation.transform(XmlSource source, XsltResult result, int repeat)
          Transform the source to the result.
 void IdentityTransformation.transform(XmlSource source, XsltResult result, int repeat)
          Transform the source to the result.
 void AbstractStylesheet.transform(XmlSource source, XsltResult result, int repeat)
          Transform the source to the result.
 

Uses of XsltException in jd.xml.xslt.extension
 

Methods in jd.xml.xslt.extension that throw XsltException
 boolean XExternalObject.toBooleanValue()
          Throws an exception since there is no standard way to convert an external object to a boolean.
 

Uses of XsltException in jd.xml.xslt.extension.exslt
 

Methods in jd.xml.xslt.extension.exslt that throw XsltException
static XObject SetFunctions.difference(XObject object1, XObject object2)
          Implements set:difference, version 1.2.
static XObject SetFunctions.intersection(XObject object1, XObject object2)
          Implements set:intersection, version 1.2.
static XObject SetFunctions.distinct(XObject object)
          Implements set:distinct, version 1.2.
static boolean SetFunctions.hasSameNode(XObject object1, XObject object2)
          Implements boolean set:has-same-node(node-set, node-set), version 1.2.
static XObject SetFunctions.leading(XObject object1, XObject object2)
          Implements node-set set:leading(node-set, node-set), version 1.2.
static XObject SetFunctions.trailing(XObject object1, XObject object2)
          Implements node-set set:trailing(node-set, node-set), version 1.2.
static double MathFunctions.min(XObject object)
          Implements math:min, version 1.2.
static double MathFunctions.max(XObject object)
          Implements math:max, version 1.2.
static XObject MathFunctions.lowest(XObject object)
          Implements math:lowest, version 1.2.
static XObject MathFunctions.highest(XObject object)
          Implements math:highest, version 1.2.
static XNodeSet CommonFunctions.nodeSet(XObject object)
          Convert the value to a NodeSet.
 

Uses of XsltException in jd.xml.xslt.result
 

Methods in jd.xml.xslt.result that throw XsltException
 void SaxResultBuilder.endDocument()
          End the document output.
 void SaxResultBuilder.endElement()
          End an element output.
 void SaxResultBuilder.addAttribute(String name, String prefix, String uri, String value)
          Add an attribute to the output.
 void SaxResultBuilder.addComment(String value)
          Add a comment to the output.
 void SaxResultBuilder.addProcessingInstruction(String target, String data)
          Add a processing instruction to the output.
abstract  void ResultBuilder.startDocument(OutputFormat outputFormat)
          Start the document output.
abstract  void ResultBuilder.endDocument()
          End the document output.
 void ResultBuilder.startElement(String name)
          Start an element output.
abstract  void ResultBuilder.startElement(String namespaceUri, String name, NamespaceContext namespaceContext, boolean isCDataSectionElement)
          Start an element output.
abstract  void ResultBuilder.endElement()
          End an element output.
abstract  void ResultBuilder.addNamespace(String prefix, String uri, boolean test)
          Add a namespace node to the output.
abstract  void ResultBuilder.addAttribute(String name, String prefix, String uri, String value)
          Add an attribute to the output.
 void ResultBuilder.addAttribute(String name, String value)
           
abstract  void ResultBuilder.addText(String text)
          Add text to the output.
abstract  void ResultBuilder.addTextUnescaped(String text)
          Add text to the output without escaping.
abstract  void ResultBuilder.addComment(String value)
          Add a comment to the output.
abstract  void ResultBuilder.addProcessingInstruction(String target, String data)
          Add a processing instruction to the output.
protected  void ResultBuilder.convertException(Exception e)
          Convert a thrown exception to a XsltException.
 void NamespaceSupport.addDeclaration(String prefix, String uri, boolean canOverwrite)
           
 void CanXmlResultBuilder.addNamespace(String prefix, String uri, boolean test)
          Add a namespace node to the output.
 

Uses of XsltException in jd.xml.xslt.result.output
 

Methods in jd.xml.xslt.result.output that throw XsltException
protected  void Utf8ByteOutput.flushBuffer()
           
 

Uses of XsltException in jd.xml.xslt.template
 

Methods in jd.xml.xslt.template that throw XsltException
 TemplateRule TemplateRuleList.getMatchingRule(XsltContext context, int maxImportPrecedence, ResultBuilder resultBuilder)
          Return a template that matches the current node of the given context.
 

Uses of XsltException in jd.xml.xslt.util
 

Methods in jd.xml.xslt.util that throw XsltException
 void ModelCache.initMainModel(XmlSource source)
          Initialize the main model of the ModelCache.