Uses of Class
de.ispsoft.jaxme.jaxb.JAXBException

Packages that use JAXBException
de.ispsoft.jaxme.jaxb   
 

Uses of JAXBException in de.ispsoft.jaxme.jaxb
 

Subclasses of JAXBException in de.ispsoft.jaxme.jaxb
 class MarshalException
          Deprecated. Soon to be replaced with javax.xml.bind.MarshalException
 class MarshallerException
          Deprecated. Soon to be replaced with javax.xml.bind.MarshallerException
 class UnmarshalException
          Deprecated. Soon to be replaced with javax.xml.bind.jaxb.UnmarshalException
 class UnrecognizedPropertyException
          Deprecated. Soon to be replaced with javax.xml.bind.UnrecognizedPropertyException
 class UnsupportedPropertyException
          Deprecated. Soon to be replaced with javax.xml.bind.UnsupportedPropertyException
 

Methods in de.ispsoft.jaxme.jaxb that throw JAXBException
 void Validator.setEventHandler(ValidationEventHandler handler)
          Deprecated. Allow an application to register a validation event handler.
 ValidationEventHandler Validator.getEventHandler()
          Deprecated. Return the current event handler or the default event handler if one hasn't been set.
 java.lang.Object UnmarshallerImpl.unmarshal(java.io.File pFile)
           
 java.lang.Object UnmarshallerImpl.unmarshal(java.io.InputStream is)
           
 java.lang.Object UnmarshallerImpl.unmarshal(java.net.URL url)
           
 java.lang.Object UnmarshallerImpl.unmarshal(org.xml.sax.InputSource source)
           
 java.lang.Object UnmarshallerImpl.unmarshal(org.w3c.dom.Node pNode)
           
 java.lang.Object UnmarshallerImpl.unmarshal(javax.xml.transform.Source source)
           
 javax.xml.parsers.SAXParser UnmarshallerImpl.getSAXParser()
          Returns the SAXParser previously set with setSAXParser() or a new SAXParser.
 org.xml.sax.XMLReader UnmarshallerImpl.getXMLReader()
           
 java.lang.Object UnmarshallerHandlerImpl.getResult()
           
 java.lang.Object UnmarshallerHandler.getResult()
          Deprecated. Obtains the unmarshalled result.
 java.lang.Object Unmarshaller.unmarshal(java.io.File f)
          Deprecated. Unmarshal XML data from the specified file and return the resulting content tree.
 java.lang.Object Unmarshaller.unmarshal(java.io.InputStream is)
          Deprecated. Unmarshal XML data from the specified InputStream and return the resulting content tree.
 java.lang.Object Unmarshaller.unmarshal(java.net.URL url)
          Deprecated. Unmarshal XML data from the specified URL and return the resulting content tree.
 java.lang.Object Unmarshaller.unmarshal(org.xml.sax.InputSource source)
          Deprecated. Unmarshal XML data from the specified SAX InputSource and return the resulting content tree.
 java.lang.Object Unmarshaller.unmarshal(org.w3c.dom.Node node)
          Deprecated. Unmarshal XML data from the specified DOM tree and return the resulting content tree.
 java.lang.Object Unmarshaller.unmarshal(javax.xml.transform.Source source)
          Deprecated. Unmarshal XML data from the specified XML Source and return the resulting content tree.
 void Unmarshaller.setValidating(boolean validating)
          Deprecated. Specifies whether or not the Unmarshaller should validate during unmarshal operations.
 boolean Unmarshaller.isValidating()
          Deprecated. Indicates whether or not the Unmarshaller is configured to validate during unmarshal operations.
 void Unmarshaller.setEventHandler(ValidationEventHandler handler)
          Deprecated. Allow an application to register a ValidationEventHandler.
 ValidationEventHandler Unmarshaller.getEventHandler()
          Deprecated. Return the current event handler or the default event handler if one hasn't been set.
 java.lang.Object MarshallerImpl.getProperty(java.lang.String pName)
          Returns the value of the given property.
 void MarshallerImpl.setProperty(java.lang.String pName, java.lang.Object pValue)
          Sets the value of the given property.
 void MarshallerImpl.marshal(java.lang.Object pObj, org.xml.sax.ContentHandler pHandler)
           
 void MarshallerImpl.marshal(java.lang.Object pObj, java.io.Writer pWriter)
           
 void MarshallerImpl.marshal(java.lang.Object pObj, javax.xml.transform.Result pResult)
           
 void MarshallerImpl.marshal(java.lang.Object pObj, java.io.OutputStream pStream)
           
 void MarshallerImpl.marshal(java.lang.Object pObj, java.io.File pFile)
           
 void MarshallerImpl.marshal(java.lang.Object pObj, org.w3c.dom.Node pNode)
           
 void Marshaller.marshal(java.lang.Object obj, javax.xml.transform.Result result)
          Deprecated. Marshal the content tree rooted at obj into the specified javax.xml.transform.Result.
 void Marshaller.marshal(java.lang.Object obj, java.io.OutputStream os)
          Deprecated. Marshal the content tree rooted at obj into an output stream.
 void Marshaller.marshal(java.lang.Object obj, java.io.Writer writer)
          Deprecated. Marshal the content tree rooted at obj into a Writer.
 void Marshaller.marshal(java.lang.Object obj, org.xml.sax.ContentHandler handler)
          Deprecated. Marshal the content tree rooted at obj into SAX2 events.
 void Marshaller.marshal(java.lang.Object obj, org.w3c.dom.Node node)
          Deprecated. Marshal the content tree rooted at obj into a DOM tree.
 void Marshaller.setEncoding(java.lang.String encoding)
          Deprecated. Set the output encoding used when marshalling to a java.io.File, java.io.OutputStream, and java.io.Writer.
 void Marshaller.setProperty(java.lang.String name, java.lang.Object value)
          Deprecated. Set the particular property in the underlying implementation of Marshaller.
 java.lang.Object Marshaller.getProperty(java.lang.String name)
          Deprecated. Get the particular property in the underlying implementation of Marshaller.
 java.lang.Object JMManagerFactoryAttachable.getProperty(java.lang.String pName)
          Returns the value of the given property.
 void JMManagerFactoryAttachable.setProperty(java.lang.String pName, java.lang.Object pValue)
          Sets the value of the given property.
static JAXBContext JAXBContext.newInstance(java.lang.String contextPath)
          Deprecated.  Obtain a new instance of a JAXBContext class.
abstract  Unmarshaller JAXBContext.createUnmarshaller()
          Deprecated. Create an Unmarshaller object that can be used to convert XML data into a java content tree.
abstract  Marshaller JAXBContext.createMarshaller()
          Deprecated. Create a Marshaller object that can be used to convert a java content tree into XML data.
abstract  Validator JAXBContext.createValidator()
          Deprecated. Create a Validator object that can be used to validate a java content tree against its source schema.