Searched refs:unmarshal (Results 1 - 25 of 55) sorted by relevance

123

/openjdk7/jdk/test/java/rmi/server/RMIClassLoader/loadProxyClasses/
H A DFnnUnmarshal.java32 Object unmarshal(MarshalledObject mobj) method in interface:FnnUnmarshal
H A DFnnClass.java32 public Object unmarshal(MarshalledObject mobj) method in class:FnnClass
/openjdk7/jaxws/src/share/jaxws_classes/javax/xml/bind/
H A DUnmarshaller.java36 * data as it is unmarshalled. It provides an overloading of unmarshal methods
45 * Object o = u.unmarshal( new File( "nosferatu.xml" ) );
57 * Object o = u.unmarshal( is );
68 * Object o = u.unmarshal( url );
80 * Object o = u.unmarshal( new StreamSource( new StringReader( xmlStr.toString() ) ) );
96 * Object o = u.unmarshal( doc );
132 * // Setup JAXB to unmarshal
142 * // unmarshal
143 * Object o = u.unmarshal( source );
162 * Object o = u.unmarshal( xmlStreamReade
431 public Object unmarshal( java.io.File f ) throws JAXBException; method in interface:Unmarshaller
454 public Object unmarshal( java.io.InputStream is ) throws JAXBException; method in interface:Unmarshaller
479 public Object unmarshal( Reader reader ) throws JAXBException; method in interface:Unmarshaller
501 public Object unmarshal( java.net.URL url ) throws JAXBException; method in interface:Unmarshaller
523 public Object unmarshal( org.xml.sax.InputSource source ) throws JAXBException; method in interface:Unmarshaller
548 public Object unmarshal( org.w3c.dom.Node node ) throws JAXBException; method in interface:Unmarshaller
576 public <T> JAXBElement<T> unmarshal( org.w3c.dom.Node node, Class<T> declaredType ) throws JAXBException; method in interface:Unmarshaller
634 public Object unmarshal( javax.xml.transform.Source source ) method in interface:Unmarshaller
665 public <T> JAXBElement<T> unmarshal( javax.xml.transform.Source source, Class<T> declaredType ) method in interface:Unmarshaller
702 public Object unmarshal( javax.xml.stream.XMLStreamReader reader ) method in interface:Unmarshaller
736 public <T> JAXBElement<T> unmarshal( javax.xml.stream.XMLStreamReader reader, Class<T> declaredType ) throws JAXBException; method in interface:Unmarshaller
772 public Object unmarshal( javax.xml.stream.XMLEventReader reader ) method in interface:Unmarshaller
807 public <T> JAXBElement<T> unmarshal( javax.xml.stream.XMLEventReader reader, Class<T> declaredType ) throws JAXBException; method in interface:Unmarshaller
[all...]
H A DJAXB.java71 * In addition, the <tt>unmarshal</tt> methods have the following characteristic:
91 * The <tt>unmarshal</tt> methods either fail with an exception or return
151 public static <T> T unmarshal( File xml, Class<T> type ) { method in class:JAXB
153 JAXBElement<T> item = getContext(type).createUnmarshaller().unmarshal(new StreamSource(xml), type);
166 public static <T> T unmarshal( URL xml, Class<T> type ) { method in class:JAXB
168 JAXBElement<T> item = getContext(type).createUnmarshaller().unmarshal(toSource(xml), type);
184 public static <T> T unmarshal( URI xml, Class<T> type ) { method in class:JAXB
186 JAXBElement<T> item = getContext(type).createUnmarshaller().unmarshal(toSource(xml), type);
203 public static <T> T unmarshal( String xml, Class<T> type ) { method in class:JAXB
205 JAXBElement<T> item = getContext(type).createUnmarshaller().unmarshal(toSourc
221 public static <T> T unmarshal( InputStream xml, Class<T> type ) { method in class:JAXB
240 public static <T> T unmarshal( Reader xml, Class<T> type ) { method in class:JAXB
257 public static <T> T unmarshal( Source xml, Class<T> type ) { method in class:JAXB
[all...]
H A DBinder.java54 * <li>{@link #unmarshal(Object)} XML infoset view to JAXB view.
55 * (Note to conserve resources, it is possible to only unmarshal a
86 * This method is similar to {@link Unmarshaller#unmarshal(Node)}
99 * to a JAXB mapped class. The method {@link #unmarshal(Object, Class)}
104 * the document/element to unmarshal XML data from.
119 public abstract Object unmarshal( XmlNode xmlNode ) throws JAXBException; method in class:Binder
129 * This method is similar to {@link Unmarshaller#unmarshal(Node, Class)}
139 * the document/element to unmarshal XML data from.
159 unmarshal( XmlNode xmlNode, Class<T> declaredType ) method in class:Binder
231 * established by the unmarshal, marsha
[all...]
/openjdk7/corba/src/share/classes/org/omg/CORBA/
H A DCustomMarshal.java56 void unmarshal(DataInputStream is); method in interface:CustomMarshal
/openjdk7/jaxws/src/share/jaxws_classes/javax/xml/bind/annotation/adapters/
H A DXmlAdapter.java57 * <li> <b> XmlAdapter.unmarshal(...): </b> During unmarshalling,
59 * to a value type and then invokes XmlAdapter.unmarshal(..) to
181 public abstract BoundType unmarshal(ValueType v) throws Exception; method in class:XmlAdapter
H A DHexBinaryAdapter.java40 public byte[] unmarshal(String s) { method in class:HexBinaryAdapter
H A DNormalizedStringAdapter.java45 public String unmarshal(String text) { method in class:NormalizedStringAdapter
H A DCollapsedStringAdapter.java46 public String unmarshal(String text) { method in class:CollapsedStringAdapter
/openjdk7/jaxws/src/share/jaxws_classes/javax/xml/bind/helpers/
H A DAbstractUnmarshallerImpl.java64 * unmarshal(Node), unmarshal(XMLReader,InputSource),
65 * unmarshal(XMLStreamReader), and unmarshal(XMLEventReader).
75 /** handler that will be used to process errors and warnings during unmarshal */
116 public Object unmarshal( Source source ) throws JAXBException { method in class:AbstractUnmarshallerImpl
123 return unmarshal( (SAXSource)source );
125 return unmarshal( streamSourceToInputSource((StreamSource)source));
127 return unmarshal( ((DOMSource)source).getNode() );
134 private Object unmarshal( SAXSourc method in class:AbstractUnmarshallerImpl
149 protected abstract Object unmarshal( XMLReader reader, InputSource source ) throws JAXBException; method in class:AbstractUnmarshallerImpl
151 public final Object unmarshal( InputSource source ) throws JAXBException { method in class:AbstractUnmarshallerImpl
161 private Object unmarshal( String url ) throws JAXBException { method in class:AbstractUnmarshallerImpl
165 public final Object unmarshal( URL url ) throws JAXBException { method in class:AbstractUnmarshallerImpl
174 public final Object unmarshal( File f ) throws JAXBException { method in class:AbstractUnmarshallerImpl
195 public final Object unmarshal( java.io.InputStream is ) method in class:AbstractUnmarshallerImpl
207 public final Object unmarshal( Reader reader ) throws JAXBException { method in class:AbstractUnmarshallerImpl
372 public Object unmarshal(XMLEventReader reader) throws JAXBException { method in class:AbstractUnmarshallerImpl
377 public Object unmarshal(XMLStreamReader reader) throws JAXBException { method in class:AbstractUnmarshallerImpl
382 public <T> JAXBElement<T> unmarshal(Node node, Class<T> expectedType) throws JAXBException { method in class:AbstractUnmarshallerImpl
386 public <T> JAXBElement<T> unmarshal(Source source, Class<T> expectedType) throws JAXBException { method in class:AbstractUnmarshallerImpl
390 public <T> JAXBElement<T> unmarshal(XMLStreamReader reader, Class<T> expectedType) throws JAXBException { method in class:AbstractUnmarshallerImpl
394 public <T> JAXBElement<T> unmarshal(XMLEventReader reader, Class<T> expectedType) throws JAXBException { method in class:AbstractUnmarshallerImpl
[all...]
/openjdk7/jaxws/src/share/jaxws_classes/com/sun/xml/internal/bind/api/
H A DBridge.java213 public final @NotNull T unmarshal(@NotNull XMLStreamReader in) throws JAXBException { method in class:Bridge
214 return unmarshal(in,null);
219 public final @NotNull T unmarshal(@NotNull XMLStreamReader in, @Nullable AttachmentUnmarshaller au) throws JAXBException { method in class:Bridge
222 return exit(unmarshal(u,in),u);
224 public final @NotNull T unmarshal(@NotNull BridgeContext context, @NotNull XMLStreamReader in) throws JAXBException { method in class:Bridge
225 return unmarshal( ((BridgeContextImpl)context).unmarshaller, in );
227 public abstract @NotNull T unmarshal(@NotNull Unmarshaller u, @NotNull XMLStreamReader in) throws JAXBException; method in class:Bridge
245 public final @NotNull T unmarshal(@NotNull Source in) throws JAXBException { method in class:Bridge
246 return unmarshal(in,null);
251 public final @NotNull T unmarshal( method in class:Bridge
256 public final @NotNull T unmarshal(@NotNull BridgeContext context, @NotNull Source in) throws JAXBException { method in class:Bridge
259 public abstract @NotNull T unmarshal(@NotNull Unmarshaller u, @NotNull Source in) throws JAXBException; method in class:Bridge
277 public final @NotNull T unmarshal(@NotNull InputStream in) throws JAXBException { method in class:Bridge
281 public final @NotNull T unmarshal(@NotNull BridgeContext context, @NotNull InputStream in) throws JAXBException { method in class:Bridge
284 public abstract @NotNull T unmarshal(@NotNull Unmarshaller u, @NotNull InputStream in) throws JAXBException; method in class:Bridge
300 public final @NotNull T unmarshal(@NotNull Node n) throws JAXBException { method in class:Bridge
306 public final @NotNull T unmarshal(@NotNull Node n, @Nullable AttachmentUnmarshaller au) throws JAXBException { method in class:Bridge
311 public final @NotNull T unmarshal(@NotNull BridgeContext context, @NotNull Node n) throws JAXBException { method in class:Bridge
314 public abstract @NotNull T unmarshal(@NotNull Unmarshaller context, @NotNull Node n) throws JAXBException; method in class:Bridge
[all...]
/openjdk7/jaxws/src/share/jaxws_classes/com/sun/xml/internal/bind/
H A DAnyTypeAdapter.java43 public Object unmarshal(Object v) { method in class:AnyTypeAdapter
/openjdk7/corba/src/share/classes/com/sun/corba/se/spi/transport/
H A DIORTransformer.java37 IOR unmarshal( CorbaInputObject io ) ; method in interface:IORTransformer
/openjdk7/jaxws/src/share/jaxws_classes/com/sun/tools/internal/xjc/runtime/
H A DZeroOneBooleanAdapter.java38 public Boolean unmarshal(String v) { method in class:ZeroOneBooleanAdapter
/openjdk7/jaxws/src/share/jaxws_classes/com/sun/xml/internal/bind/v2/runtime/
H A DBridgeAdapter.java112 public @NotNull InMemory unmarshal(Unmarshaller u, XMLStreamReader in) throws JAXBException { method in class:BridgeAdapter
113 return adaptU(u, core.unmarshal(u,in));
116 public @NotNull InMemory unmarshal(Unmarshaller u, Source in) throws JAXBException { method in class:BridgeAdapter
117 return adaptU(u, core.unmarshal(u,in));
120 public @NotNull InMemory unmarshal(Unmarshaller u, InputStream in) throws JAXBException { method in class:BridgeAdapter
121 return adaptU(u, core.unmarshal(u,in));
124 public @NotNull InMemory unmarshal(Unmarshaller u, Node n) throws JAXBException { method in class:BridgeAdapter
125 return adaptU(u, core.unmarshal(u,n));
138 return a.unmarshal(v);
H A DSwaRefAdapter.java59 public DataHandler unmarshal(String cid) { method in class:SwaRefAdapter
H A DBridgeImpl.java107 public @NotNull T unmarshal(Unmarshaller _u, XMLStreamReader in) throws JAXBException { method in class:BridgeImpl
112 public @NotNull T unmarshal(Unmarshaller _u, Source in) throws JAXBException { method in class:BridgeImpl
117 public @NotNull T unmarshal(Unmarshaller _u, InputStream in) throws JAXBException { method in class:BridgeImpl
122 public @NotNull T unmarshal(Unmarshaller _u, Node n) throws JAXBException { method in class:BridgeImpl
/openjdk7/jaxws/src/share/jaxws_classes/com/sun/xml/internal/ws/message/jaxb/
H A DMarshallerBridge.java102 public Object unmarshal(Unmarshaller u, XMLStreamReader in) { method in class:MarshallerBridge
106 public Object unmarshal(Unmarshaller u, Source in) { method in class:MarshallerBridge
110 public Object unmarshal(Unmarshaller u, InputStream in) { method in class:MarshallerBridge
114 public Object unmarshal(Unmarshaller u, Node n) { method in class:MarshallerBridge
/openjdk7/jaxws/src/share/jaxws_classes/com/sun/xml/internal/bind/v2/runtime/unmarshaller/
H A DUnmarshallerImpl.java89 * schema which will be used to validate during calls to unmarshal
174 protected Object unmarshal( XMLReader reader, InputSource source ) throws JAXBException { method in class:UnmarshallerImpl
178 protected <T> JAXBElement<T> unmarshal( XMLReader reader, InputSource source, Class<T> expectedType ) throws JAXBException { method in class:UnmarshallerImpl
224 public <T> JAXBElement<T> unmarshal( Source source, Class<T> expectedType ) throws JAXBException { method in class:UnmarshallerImpl
232 return unmarshal( reader, ss.getInputSource(), expectedType );
235 return unmarshal( getXMLReader(), streamSourceToInputSource((StreamSource)source), expectedType );
238 return unmarshal( ((DOMSource)source).getNode(), expectedType );
285 public <T> JAXBElement<T> unmarshal(Node node, Class<T> expectedType) throws JAXBException { method in class:UnmarshallerImpl
291 public final Object unmarshal( Node node ) throws JAXBException { method in class:UnmarshallerImpl
297 public final Object unmarshal( SAXSourc method in class:UnmarshallerImpl
326 public Object unmarshal(XMLStreamReader reader) throws JAXBException { method in class:UnmarshallerImpl
331 public <T> JAXBElement<T> unmarshal(XMLStreamReader reader, Class<T> expectedType) throws JAXBException { method in class:UnmarshallerImpl
366 public <T> JAXBElement<T> unmarshal(XMLEventReader reader, Class<T> expectedType) throws JAXBException { method in class:UnmarshallerImpl
373 public Object unmarshal(XMLEventReader reader) throws JAXBException { method in class:UnmarshallerImpl
[all...]
/openjdk7/jaxws/src/share/jaxws_classes/com/sun/xml/internal/ws/message/
H A DDOMHeader.java82 return (T) unmarshaller.unmarshal(node);
86 return bridge.unmarshal(node);
H A DAbstractHeaderImpl.java68 return (T)unmarshaller.unmarshal(readHeader());
76 return bridge.unmarshal(readHeader());
H A DDOMMessage.java115 return (T)unmarshaller.unmarshal(payload);
122 return bridge.unmarshal(payload,
/openjdk7/jaxws/src/share/jaxws_classes/com/sun/xml/internal/ws/fault/
H A DExceptionBean.java68 public static ServerSideException unmarshal( Node xml ) throws JAXBException { method in class:ExceptionBean
69 ExceptionBean e = (ExceptionBean) JAXB_CONTEXT.createUnmarshaller().unmarshal(xml);
/openjdk7/jaxws/src/share/jaxws_classes/com/sun/xml/internal/ws/policy/sourcemodel/attach/
H A DExternalAttachmentsUnmarshaller.java93 public static Map<URI, Policy> unmarshal(final Reader source) throws PolicyException { method in class:ExternalAttachmentsUnmarshaller
98 final Map<URI, Policy> map = instance.unmarshal(reader, null);
106 private Map<URI, Policy> unmarshal(final XMLEventReader reader, final StartElement parentElement) throws PolicyException { method in class:ExternalAttachmentsUnmarshaller
177 this.unmarshal(reader, element);

Completed in 175 milliseconds

123