API Overview API Index Package Overview Direct link to this page
JDK 1.6
  javax.xml.bind.helpers. AbstractUnmarshallerImpl View Source
Author(s)

Since
JAXB1.0
Version
$Revision: 1.13 $ $Date: 2005/07/28 22:18:12 $
Serial
Hierarchy
 Object
      AbstractUnmarshallerImpl
Implements
 Unmarshaller
Subclasses
Description
publicabstract abstract class AbstractUnmarshallerImpl
  Partial default Unmarshaller implementation.
See also:    Unmarshaller
Constructors
public AbstractUnmarshallerImpl ()
Methods
Hide/Show inherited methods
protected UnmarshalException createUnmarshalException (SAXException e)
  Creates an UnmarshalException from a SAXException.
public A getAdapter (Class< A> type) [Specified in Unmarshaller]
public AttachmentUnmarshaller getAttachmentUnmarshaller () [Specified in Unmarshaller]
public ValidationEventHandler getEventHandler () throws JAXBException [Specified in Unmarshaller]
  Return the current event handler or the default event handler if one hasn't been set.
public Listener getListener () [Specified in Unmarshaller]
public Object getProperty (String name) throws PropertyException [Specified in Unmarshaller]
  Default implementation of the getProperty method always throws PropertyException since there are no required properties.
public Schema getSchema () [Specified in Unmarshaller]
protected XMLReader getXMLReader () throws JAXBException
  Obtains a configured XMLReader.
public boolean isValidating () throws JAXBException [Specified in Unmarshaller]
  Indicates whether or not the Unmarshaller is configured to validate during unmarshal operations.
public void setAdapter (Class< A> type, A adapter) [Specified in Unmarshaller]
public void setAdapter (XmlAdapter adapter) [Specified in Unmarshaller]
public void setAttachmentUnmarshaller (AttachmentUnmarshaller au) [Specified in Unmarshaller]
public void setEventHandler (ValidationEventHandler handler) throws JAXBException [Specified in Unmarshaller]
  Allow an application to register a validation event handler.
public void setListener (Listener listener) [Specified in Unmarshaller]
public void setProperty (String name, Object value) throws PropertyException [Specified in Unmarshaller]
  Default implementation of the setProperty method always throws PropertyException since there are no required properties.
public void setSchema (Schema schema) [Specified in Unmarshaller]
public void setValidating (boolean validating) throws JAXBException [Specified in Unmarshaller]
  Specifies whether or not the Unmarshaller should validate during unmarshal operations.
publicfinal Object unmarshal (File f) throws JAXBException [Specified in Unmarshaller]
publicfinal Object unmarshal (InputSource source) throws JAXBException [Specified in Unmarshaller]
publicfinal Object unmarshal (InputStream is) throws JAXBException [Specified in Unmarshaller]
public JAXBElement< T> unmarshal (Node node, Class< T> expectedType) throws JAXBException [Specified in Unmarshaller]
publicfinal Object unmarshal (Reader reader) throws JAXBException [Specified in Unmarshaller]
public Object unmarshal (Source source) throws JAXBException [Specified in Unmarshaller]
public JAXBElement< T> unmarshal (Source source, Class< T> expectedType) throws JAXBException [Specified in Unmarshaller]
publicfinal Object unmarshal (URL url) throws JAXBException [Specified in Unmarshaller]
public Object unmarshal (XMLEventReader reader) throws JAXBException [Specified in Unmarshaller]
public JAXBElement< T> unmarshal (XMLEventReader reader, Class< T> expectedType) throws JAXBException [Specified in Unmarshaller]
protectedabstract Object unmarshal (XMLReader reader, InputSource source) throws JAXBException
  Unmarshals an object by using the specified XMLReader and the InputSource.
public Object unmarshal (XMLStreamReader reader) throws JAXBException [Specified in Unmarshaller]
public JAXBElement< T> unmarshal (XMLStreamReader reader, Class< T> expectedType) throws JAXBException [Specified in Unmarshaller]
Fields
Hide/Show inherited fields
protected boolean validating
whether or not the unmarshaller will validate
Nested Classes
Generated By: JavaOnTracks Doclet 0.1.4     ©Thibaut Colar