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

/openjdk7/jaxws/src/share/jaxws_classes/javax/xml/bind/
H A DBinder.java92 * When {@link #getSchema()} is non-null, <code>xmlNode</code>
98 * or the type, specifiable via <tt>@xsi:type</tt>, of <tt>xmlNode</tt>
101 * the <tt>xmlNode</tt> should be mapped to.
103 * @param xmlNode
119 public abstract Object unmarshal( XmlNode xmlNode ) throws JAXBException;
135 * When {@link #getSchema()} is non-null, <code>xmlNode</code>
138 * @param xmlNode
159 unmarshal( XmlNode xmlNode, Class<T> declaredType ) argument
178 * @param xmlNode
192 public abstract void marshal( Object jaxbObject, XmlNode xmlNode ) throw
[all...]
/openjdk7/jdk/src/share/classes/java/util/prefs/
H A DXmlSupport.java288 private static void ImportSubtree(Preferences prefsNode, Element xmlNode) { argument
289 NodeList xmlKids = xmlNode.getChildNodes();
/openjdk7/jaxws/src/share/jaxws_classes/com/sun/xml/internal/bind/v2/runtime/
H A DBinderImpl.java100 public void marshal(Object jaxbObject, XmlNode xmlNode) throws JAXBException { argument
101 if ((xmlNode == null) || (jaxbObject == null))
103 getMarshaller().marshal(jaxbObject,createOutput(xmlNode));
107 private DOMOutput createOutput(XmlNode xmlNode) { argument
108 return new DOMOutput((Node)xmlNode,assoc);
112 public Object updateJAXB(XmlNode xmlNode) throws JAXBException { argument
113 return associativeUnmarshal(xmlNode,true,null);
116 public Object unmarshal( XmlNode xmlNode ) throws JAXBException {
117 return associativeUnmarshal(xmlNode,false,null);
120 public <T> JAXBElement<T> unmarshal(XmlNode xmlNode, Clas argument
134 associativeUnmarshal(XmlNode xmlNode, boolean inplace, Class expectedType) argument
162 getJAXBNode(XmlNode xmlNode) argument
175 updateXML(Object jaxbObject, XmlNode xmlNode) argument
[all...]

Completed in 44 milliseconds