Searched refs:XMLSerializer (Results 1 - 25 of 71) sorted by relevance

123

/openjdk7/jaxws/src/share/jaxws_classes/com/sun/xml/internal/bind/v2/runtime/
H A DInlineBinaryTransducer.java49 XMLSerializer w = XMLSerializer.getInstance();
59 public void writeText(XMLSerializer w, V o, String fieldName) throws IOException, SAXException, XMLStreamException, AccessorException {
69 public void writeLeafElement(XMLSerializer w, Name tagName, V o, String fieldName) throws IOException, SAXException, XMLStreamException, AccessorException {
H A DMimeTypedTransducer.java58 XMLSerializer w = XMLSerializer.getInstance();
68 public void writeText(XMLSerializer w, V o, String fieldName) throws IOException, SAXException, XMLStreamException, AccessorException {
78 public void writeLeafElement(XMLSerializer w, Name tagName, V o, String fieldName) throws IOException, SAXException, XMLStreamException, AccessorException {
H A DSchemaTypeTransducer.java46 * @see XMLSerializer#schemaType
59 XMLSerializer w = XMLSerializer.getInstance();
69 public void writeText(XMLSerializer w, V o, String fieldName) throws IOException, SAXException, XMLStreamException, AccessorException {
79 public void writeLeafElement(XMLSerializer w, Name tagName, V o, String fieldName) throws IOException, SAXException, XMLStreamException, AccessorException {
H A DStAXPostInitAction.java47 private final XMLSerializer serializer;
49 StAXPostInitAction(XMLStreamWriter xsw,XMLSerializer serializer) {
56 StAXPostInitAction(XMLEventWriter xew,XMLSerializer serializer) {
63 StAXPostInitAction(NamespaceContext nsc,XMLSerializer serializer) {
H A DFilterTransducer.java60 public void declareNamespace(T o, XMLSerializer w) throws AccessorException {
72 public void writeText(XMLSerializer w, T o, String fieldName) throws IOException, SAXException, XMLStreamException, AccessorException {
76 public void writeLeafElement(XMLSerializer w, Name tagName, T o, String fieldName) throws IOException, SAXException, XMLStreamException, AccessorException {
H A DTransducer.java67 * and therefore {@link #declareNamespace(Object, XMLSerializer)} is no-op.
82 void declareNamespace( ValueT o, XMLSerializer w ) throws AccessorException;
110 * to one of the {@link XMLSerializer#text(String, String)} method,
113 void writeText(XMLSerializer w, ValueT o, String fieldName) throws IOException, SAXException, XMLStreamException, AccessorException;
117 * to one of the {@link XMLSerializer#leafElement(Name, String, String)} method.
120 void writeLeafElement(XMLSerializer w, Name tagName, @NotNull ValueT o, String fieldName) throws IOException, SAXException, XMLStreamException, AccessorException;
H A DCompositeStructureBeanInfo.java65 public String getId(CompositeStructure o, XMLSerializer target) throws SAXException {
74 public void serializeRoot(CompositeStructure o, XMLSerializer target) throws SAXException, IOException, XMLStreamException {
83 public void serializeURIs(CompositeStructure o, XMLSerializer target) throws SAXException {
87 public void serializeAttributes(CompositeStructure o, XMLSerializer target) throws SAXException, IOException, XMLStreamException {
91 public void serializeBody(CompositeStructure o, XMLSerializer target) throws SAXException, IOException, XMLStreamException {
H A DInternalBridge.java52 abstract void marshal( T o, XMLSerializer out ) throws IOException, SAXException, XMLStreamException;
H A DDomPostInitAction.java48 private final XMLSerializer serializer;
50 DomPostInitAction(Node node, XMLSerializer serializer) {
H A DLeafBeanInfoImpl.java105 public final String getId(BeanT bean, XMLSerializer target) {
109 public final void serializeBody(BeanT bean, XMLSerializer w) throws SAXException, IOException, XMLStreamException {
120 public final void serializeAttributes(BeanT bean, XMLSerializer target) {
124 public final void serializeRoot(BeanT bean, XMLSerializer target) throws SAXException, IOException, XMLStreamException {
140 public final void serializeURIs(BeanT bean, XMLSerializer target) throws SAXException {
H A DValueListBeanInfoImpl.java105 public void serializeBody(Object array, XMLSerializer target) throws SAXException, IOException, XMLStreamException {
117 public final void serializeURIs(Object array, XMLSerializer target) throws SAXException {
147 public final String getId(Object array, XMLSerializer target) {
151 public final void serializeAttributes(Object array, XMLSerializer target) {
155 public final void serializeRoot(Object array, XMLSerializer target) throws SAXException {
H A DSwaRefAdapter.java67 AttachmentMarshaller am = XMLSerializer.getInstance().attachmentMarshaller;
/openjdk7/jaxws/src/share/jaxws_classes/com/sun/xml/internal/bind/v2/runtime/property/
H A DPropertyImpl.java35 import com.sun.xml.internal.bind.v2.runtime.XMLSerializer;
62 public void serializeBody(BeanT o, XMLSerializer w, Object outerPeer) throws SAXException, AccessorException, IOException, XMLStreamException {
65 public void serializeURIs(BeanT o, XMLSerializer w) throws SAXException, AccessorException {
H A DProperty.java40 import com.sun.xml.internal.bind.v2.runtime.XMLSerializer;
64 * @see JaxBeanInfo#serializeBody(Object, XMLSerializer)
73 public void serializeBody(BeanT beanT, XMLSerializer target, Object outerPeer) throws SAXException, AccessorException, IOException, XMLStreamException;
76 * @see JaxBeanInfo#serializeURIs(Object, XMLSerializer)
78 public void serializeURIs(BeanT beanT, XMLSerializer target) throws SAXException, AccessorException;
82 * {@link #serializeURIs(Object,XMLSerializer)} performs some meaningful action.
H A DArrayElementLeafProperty.java37 import com.sun.xml.internal.bind.v2.runtime.XMLSerializer;
65 public void serializeItem(JaxBeanInfo bi, ItemT item, XMLSerializer w) throws SAXException, AccessorException, IOException, XMLStreamException {
H A DArrayElementNodeProperty.java35 import com.sun.xml.internal.bind.v2.runtime.XMLSerializer;
50 public void serializeItem(JaxBeanInfo expected, ItemT item, XMLSerializer w) throws SAXException, IOException, XMLStreamException {
H A DAttributeProperty.java39 import com.sun.xml.internal.bind.v2.runtime.XMLSerializer;
83 * @see JaxBeanInfo#serializeAttributes(Object, XMLSerializer)
85 public void serializeAttributes(BeanT o, XMLSerializer w) throws SAXException, AccessorException, IOException, XMLStreamException {
91 public void serializeURIs(BeanT o, XMLSerializer w) throws AccessorException, SAXException {
H A DValueProperty.java38 import com.sun.xml.internal.bind.v2.runtime.XMLSerializer;
70 public final void serializeBody(BeanT o, XMLSerializer w, Object outerPeer) throws SAXException, AccessorException, IOException, XMLStreamException {
75 public void serializeURIs(BeanT o, XMLSerializer w) throws SAXException, AccessorException {
/openjdk7/jaxws/src/share/jaxws_classes/com/sun/xml/internal/bind/v2/runtime/reflect/
H A DDefaultTransducedAccessor.java33 import com.sun.xml.internal.bind.v2.runtime.XMLSerializer;
43 * of the {@link #writeText(XMLSerializer,Object,String)} and
44 * {@link #writeLeafElement(XMLSerializer, Name, Object, String)} methods,
53 public void writeLeafElement(XMLSerializer w, Name tagName, T o, String fieldName) throws SAXException, AccessorException, IOException, XMLStreamException {
57 public void writeText(XMLSerializer w, T o, String fieldName) throws AccessorException, SAXException, IOException, XMLStreamException {
H A DAdaptedLister.java32 import com.sun.xml.internal.bind.v2.runtime.XMLSerializer;
56 public ListIterator<OnWireItemT> iterator(PropT prop, XMLSerializer context) {
84 private final XMLSerializer serializer;
86 public ListIteratorImpl(ListIterator<InMemItemT> core,XMLSerializer serializer) {
H A DTransducedAccessor.java47 import com.sun.xml.internal.bind.v2.runtime.XMLSerializer;
85 * @see Transducer#declareNamespace(Object, XMLSerializer)
87 public void declareNamespace( BeanT o, XMLSerializer w ) throws AccessorException, SAXException {
94 * Use {@link XMLSerializer#getInstance()} to access to the namespace bindings
174 public abstract void writeLeafElement(XMLSerializer w, Name tagName, BeanT o, String fieldName) throws SAXException, AccessorException, IOException, XMLStreamException;
177 * Invokes one of the {@link XMLSerializer#text(String, String)} method
180 public abstract void writeText(XMLSerializer w, BeanT o, String fieldName) throws AccessorException, SAXException, IOException, XMLStreamException;
194 public void declareNamespace(BeanT bean, XMLSerializer w) throws AccessorException {
201 public void writeLeafElement(XMLSerializer w, Name tagName, BeanT o, String fieldName) throws SAXException, AccessorException, IOException, XMLStreamException {
240 public void writeLeafElement(XMLSerializer
[all...]
/openjdk7/jaxws/src/share/jaxws_classes/com/sun/xml/internal/bind/v2/runtime/output/
H A DXmlOutputAbstractImpl.java34 import com.sun.xml.internal.bind.v2.runtime.XMLSerializer;
56 * the {@link XMLSerializer} that coordinates this whole marshalling episode.
60 public void startDocument(XMLSerializer serializer, boolean fragment, int[] nsUriIndex2prefixIndex, NamespaceContextImpl nsContext) throws IOException, SAXException, XMLStreamException {
124 * This array is shared with {@link XMLSerializer} and
137 protected XMLSerializer serializer;
H A DXmlOutput.java35 import com.sun.xml.internal.bind.v2.runtime.XMLSerializer;
43 * Implementations of this interface is used to connect {@link XMLSerializer}
44 * to the actual target. This allows {@link XMLSerializer} to be API agnostic.
61 * {@link XMLSerializer}, keeps track of the in-scope namespace bindings. By the time
67 * {@link XmlOutput} and {@link XMLSerializer} uses indices to
88 * {@link XMLSerializer} calls the writer methods in the following order:
113 * the {@link XMLSerializer} that coordinates this whole marshalling episode.
117 public void startDocument(XMLSerializer serializer, boolean fragment, int[] nsUriIndex2prefixIndex, NamespaceContextImpl nsContext) throws IOException, SAXException, XMLStreamException;
/openjdk7/jaxws/src/share/jaxws_classes/com/sun/xml/internal/bind/v2/runtime/reflect/opt/
H A DTransducedAccessor_field_Integer.java35 import com.sun.xml.internal.bind.v2.runtime.XMLSerializer;
65 public void writeLeafElement(XMLSerializer w, Name tagName, Object o, String fieldName) throws SAXException, AccessorException, IOException, XMLStreamException {
H A DTransducedAccessor_method_Integer.java35 import com.sun.xml.internal.bind.v2.runtime.XMLSerializer;
65 public void writeLeafElement(XMLSerializer w, Name tagName, Object o, String fieldName) throws SAXException, AccessorException, IOException, XMLStreamException {

Completed in 1356 milliseconds

123