Uses of Class
org.jdom.JDOMException

Packages that use JDOMException
org.jdom   
org.jdom.adapters   
org.jdom.input   
org.jdom.output   
org.jdom.transform   
org.jdom.xpath   
 

Uses of JDOMException in org.jdom
 

Subclasses of JDOMException in org.jdom
 class DataConversionException
          DataConversionException is thrown when a requested XML value is requested to be converted, and conversion fails.
 

Uses of JDOMException in org.jdom.adapters
 

Methods in org.jdom.adapters that throw JDOMException
 org.w3c.dom.Document AbstractDOMAdapter.getDocument(java.io.File filename, boolean validate)
           This creates a new Document from an existing InputStream by letting a DOM parser handle parsing using the supplied stream.
abstract  org.w3c.dom.Document AbstractDOMAdapter.getDocument(java.io.InputStream in, boolean validate)
           This creates a new Document from an existing InputStream by letting a DOM parser handle parsing using the supplied stream.
abstract  org.w3c.dom.Document AbstractDOMAdapter.createDocument()
           This creates an empty Document object based on a specific parser implementation.
 org.w3c.dom.Document AbstractDOMAdapter.createDocument(DocType doctype)
           This creates an empty Document object based on a specific parser implementation with the given DOCTYPE.
 org.w3c.dom.Document XercesDOMAdapter.getDocument(java.io.InputStream in, boolean validate)
           This creates a new Document from an existing InputStream by letting a DOM parser handle parsing using the supplied stream.
 org.w3c.dom.Document XercesDOMAdapter.createDocument()
           This creates an empty Document object based on a specific parser implementation.
 org.w3c.dom.Document DOMAdapter.getDocument(java.io.File filename, boolean validate)
           This creates a new Document from a given filename by letting a DOM parser handle parsing from the file.
 org.w3c.dom.Document DOMAdapter.getDocument(java.io.InputStream in, boolean validate)
           This creates a new Document from an existing InputStream by letting a DOM parser handle parsing using the supplied stream.
 org.w3c.dom.Document DOMAdapter.createDocument()
           This creates an empty Document object based on a specific parser implementation.
 org.w3c.dom.Document DOMAdapter.createDocument(DocType doctype)
           This creates an empty Document object based on a specific parser implementation with the given DOCTYPE.
 org.w3c.dom.Document XML4JDOMAdapter.getDocument(java.io.InputStream in, boolean validate)
           This creates a new Document from an existing InputStream by letting a DOM parser handle parsing using the supplied stream.
 org.w3c.dom.Document XML4JDOMAdapter.createDocument()
           This creates an empty Document object based on a specific parser implementation.
 org.w3c.dom.Document CrimsonDOMAdapter.getDocument(java.io.InputStream in, boolean validate)
           This creates a new Document from an existing InputStream by letting a DOM parser handle parsing using the supplied stream.
 org.w3c.dom.Document CrimsonDOMAdapter.createDocument()
           This creates an empty Document object based on a specific parser implementation.
 org.w3c.dom.Document OracleV2DOMAdapter.getDocument(java.io.InputStream in, boolean validate)
           This creates a new Document from an existing InputStream by letting a DOM parser handle parsing using the supplied stream.
 org.w3c.dom.Document OracleV2DOMAdapter.createDocument()
           This creates an empty Document object based on a specific parser implementation.
 org.w3c.dom.Document JAXPDOMAdapter.getDocument(java.io.InputStream in, boolean validate)
           This creates a new Document from an existing InputStream by letting a JAXP parser handle parsing using the supplied stream.
 org.w3c.dom.Document JAXPDOMAdapter.createDocument()
           This creates an empty Document object based on a specific parser implementation.
 org.w3c.dom.Document OracleV1DOMAdapter.getDocument(java.io.InputStream in, boolean validate)
           This creates a new Document from an existing InputStream by letting a DOM parser handle parsing using the supplied stream.
 org.w3c.dom.Document OracleV1DOMAdapter.createDocument()
           This creates an empty Document object based on a specific parser implementation.
 

Uses of JDOMException in org.jdom.input
 

Methods in org.jdom.input that throw JDOMException
 Document DOMBuilder.build(java.io.InputStream in)
          Deprecated. Deprecated in Beta 7, SAXBuilder should be used for building from any input other than a DOM tree
 Document DOMBuilder.build(java.io.File file)
          Deprecated. Deprecated in Beta 7, SAXBuilder should be used for building from any input other than a DOM tree
 Document DOMBuilder.build(java.net.URL url)
          Deprecated. Deprecated in Beta 7, SAXBuilder should be used for building from any input other than a DOM tree
 Document SAXBuilder.build(org.xml.sax.InputSource in)
           This builds a document from the supplied input source.
protected  org.xml.sax.XMLReader SAXBuilder.createParser()
           This creates the XMLReader to be used for reading the XML document.
protected  void SAXBuilder.configureParser(org.xml.sax.XMLReader parser, SAXHandler contentHandler)
           This configures the XMLReader to be used for reading the XML document.
 Document SAXBuilder.build(java.io.InputStream in)
           This builds a document from the supplied input stream.
 Document SAXBuilder.build(java.io.File file)
           This builds a document from the supplied filename.
 Document SAXBuilder.build(java.net.URL url)
           This builds a document from the supplied URL.
 Document SAXBuilder.build(java.io.InputStream in, java.lang.String systemId)
           This builds a document from the supplied input stream.
 Document SAXBuilder.build(java.io.Reader characterStream)
           This builds a document from the supplied Reader.
 Document SAXBuilder.build(java.io.Reader characterStream, java.lang.String SystemId)
           This builds a document from the supplied Reader.
 Document SAXBuilder.build(java.lang.String systemId)
           This builds a document from the supplied URI.
 

Uses of JDOMException in org.jdom.output
 

Methods in org.jdom.output that throw JDOMException
 void SAXOutputter.output(Document document)
           This will output the JDOM Document, firing off the SAX events that have been registered.
 org.w3c.dom.Document DOMOutputter.output(Document document)
           This converts the JDOM Document parameter to a DOM Document, returning the DOM version.
 org.w3c.dom.Element DOMOutputter.output(Element element)
          Deprecated. Deprecated in Beta 9, since a DOM Element should not be isolated from its Document; use output(Document) instead
protected  org.w3c.dom.Element DOMOutputter.output(Element element, org.w3c.dom.Document domDoc, org.jdom.output.NamespaceStack namespaces)
           
 org.w3c.dom.Attr DOMOutputter.output(Attribute attribute)
          Deprecated. Deprecated in Beta 9, since a DOM Attr should not be isolated from its Document; use output(Document) instead
protected  org.w3c.dom.Attr DOMOutputter.output(Attribute attribute, org.w3c.dom.Document domDoc)
           
 

Uses of JDOMException in org.jdom.transform
 

Subclasses of JDOMException in org.jdom.transform
 class XSLException
          XSLException is thrown when an XSL stylesheet fails to compile or an XSL transform fails
 

Uses of JDOMException in org.jdom.xpath
 

Methods in org.jdom.xpath that throw JDOMException
static XPath XPath.newInstance(java.lang.String path)
          Creates a new XPath wrapper object, compiling the specified XPath expression.
abstract  java.util.List XPath.selectNodes(java.lang.Object context)
          Evaluates the wrapped XPath expression and returns the list of selected nodes.
abstract  java.lang.Object XPath.selectSingleNode(java.lang.Object context)
          Evaluates the wrapped XPath expression and returns the first entry in the list of selected nodes.
abstract  java.lang.String XPath.valueOf(java.lang.Object context)
          Returns the string value of the first node selected by applying the wrapped XPath expression to the given context.
abstract  java.lang.Number XPath.numberValueOf(java.lang.Object context)
          Returns the number value of the first node selected by applying the wrapped XPath expression to the given context.
static java.util.List XPath.selectNodes(java.lang.Object context, java.lang.String path)
          Evaluates an XPath expression and returns the list of selected nodes.
static java.lang.Object XPath.selectSingleNode(java.lang.Object context, java.lang.String path)
          Evaluates the wrapped XPath expression and returns the first entry in the list of selected nodes.
 

Constructors in org.jdom.xpath that throw JDOMException
XPath(java.lang.String expr)
          Creates a new XPath wrapper object, compiling the specified XPath expression.
 



Copyright © 2002 Jason Hunter, Brett McLaughlin. All Rights Reserved.