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

/openjdk7/jaxws/src/share/jaxws_classes/javax/xml/bind/
H A DJAXBIntrospector.java63 * <p>Get xml element qname for <code>jaxbElement</code>.</p>
65 * @param jaxbElement is an object that {@link #isElement(Object)} returned true.
67 * @return xml element qname associated with jaxbElement;
68 * null if <code>jaxbElement</code> is not a JAXB Element.
70 public abstract QName getElementName(Object jaxbElement); argument
79 * @param jaxbElement object that #isElement(Object) returns true.
81 * @return The element value of the <code>jaxbElement</code>.
83 public static Object getValue(Object jaxbElement) { argument
84 if (jaxbElement instanceof JAXBElement) {
85 return ((JAXBElement)jaxbElement)
[all...]
H A DMarshaller.java357 * Marshal the content tree rooted at <tt>jaxbElement</tt> into the specified
367 * @param jaxbElement
383 public void marshal( Object jaxbElement, javax.xml.transform.Result result ) argument
387 * Marshal the content tree rooted at <tt>jaxbElement</tt> into an output stream.
389 * @param jaxbElement
405 public void marshal( Object jaxbElement, java.io.OutputStream os ) argument
409 * Marshal the content tree rooted at <tt>jaxbElement</tt> into a file.
411 * @param jaxbElement
428 public void marshal( Object jaxbElement, File output ) argument
432 * Marshal the content tree rooted at <tt>jaxbElement</t
450 marshal( Object jaxbElement, java.io.Writer writer ) argument
472 marshal( Object jaxbElement, org.xml.sax.ContentHandler handler ) argument
498 marshal( Object jaxbElement, org.w3c.dom.Node node ) argument
522 marshal( Object jaxbElement, javax.xml.stream.XMLStreamWriter writer ) argument
546 marshal( Object jaxbElement, javax.xml.stream.XMLEventWriter writer ) argument
[all...]
/openjdk7/jaxws/src/share/jaxws_classes/javax/xml/bind/helpers/
H A DAbstractMarshallerImpl.java98 public void marshal(Object jaxbElement, File output) throws JAXBException { argument
99 checkNotNull(jaxbElement, "jaxbElement", output, "output" );
103 marshal( jaxbElement, new StreamResult(os) );

Completed in 44 milliseconds