Searched defs:unmarshal0 (Results 1 - 1 of 1) sorted by relevance

/openjdk7/jaxws/src/share/jaxws_classes/com/sun/xml/internal/bind/v2/runtime/unmarshaller/
H A DUnmarshallerImpl.java175 return unmarshal0(reader,source,null);
181 return (JAXBElement)unmarshal0(reader,source,getBeanInfo(expectedType));
184 private Object unmarshal0( XMLReader reader, InputSource source, JaxBeanInfo expectedType ) throws JAXBException { method in class:UnmarshallerImpl
244 public Object unmarshal0( Source source, JaxBeanInfo expectedType ) throws JAXBException { method in class:UnmarshallerImpl
252 return unmarshal0( reader, ss.getInputSource(), expectedType );
255 return unmarshal0( getXMLReader(), streamSourceToInputSource((StreamSource)source), expectedType );
258 return unmarshal0( ((DOMSource)source).getNode(), expectedType );
288 return (JAXBElement)unmarshal0(node,getBeanInfo(expectedType));
292 return unmarshal0(node,null);
301 public final Object unmarshal0( Nod method in class:UnmarshallerImpl
337 public Object unmarshal0(XMLStreamReader reader, JaxBeanInfo expectedType) throws JAXBException { method in class:UnmarshallerImpl
377 private Object unmarshal0(XMLEventReader reader,JaxBeanInfo expectedType) throws JAXBException { method in class:UnmarshallerImpl
405 public Object unmarshal0( InputStream input, JaxBeanInfo expectedType ) throws JAXBException { method in class:UnmarshallerImpl
[all...]

Completed in 31 milliseconds