Searched refs:XmlOutput (Results 1 - 8 of 8) sorted by relevance

/openjdk7/jaxws/src/share/jaxws_classes/com/sun/xml/internal/bind/v2/runtime/output/
H A DForkXmlOutput.java38 * {@link XmlOutput} that writes to two {@link XmlOutput}s.
42 private final XmlOutput lhs;
43 private final XmlOutput rhs;
45 public ForkXmlOutput(XmlOutput lhs, XmlOutput rhs) {
H A DXMLStreamWriterOutput.java41 * {@link XmlOutput} that writes to StAX {@link XMLStreamWriter}.
53 * Creates a new {@link XmlOutput} from a {@link XMLStreamWriter}.
56 public static XmlOutput create(XMLStreamWriter out, JAXBContextImpl context) {
161 private static final Constructor<? extends XmlOutput> FI_OUTPUT_CTOR = initFastInfosetOutputClass();
178 private static Constructor<? extends XmlOutput> initFastInfosetOutputClass() {
194 private static final Constructor<? extends XmlOutput> STAXEX_OUTPUT_CTOR = initStAXExOutputClass();
205 private static Constructor<? extends XmlOutput> initStAXExOutputClass() {
H A DXmlOutput.java51 * {@link XmlOutput} implementation can use these indices to improve
56 * {@link XmlOutput} still allows arbitrary namepsace URIs / local names
60 * The {@link NamespaceContextImpl} object, which is shared between {@link XmlOutput} and
64 * in-scope bindings will be removed. This book keeping is all done outside {@link XmlOutput}.
67 * {@link XmlOutput} and {@link XMLSerializer} uses indices to
71 * are "in scope", so {@link XmlOutput} is again expected to take advantage of
77 * be reported to {@link XmlOutput} through {@link #beginStartTag}.
81 * to define redundant xmlns="" on the root element. Implementations of {@link XmlOutput}
103 public interface XmlOutput { interface
H A DMTOMXmlOutput.java41 * {@link XmlOutput} decorator that supports MTOM.
47 private final XmlOutput next;
55 public MTOMXmlOutput(XmlOutput next) {
H A DXmlOutputAbstractImpl.java39 * Abstract implementation of {@link XmlOutput}
46 public abstract class XmlOutputAbstractImpl implements XmlOutput {
H A DNamespaceContextImpl.java478 public void startElement(XmlOutput out, Object innerPeer) throws IOException, XMLStreamException {
487 public void endElement(XmlOutput out) throws IOException, SAXException, XMLStreamException {
/openjdk7/jaxws/src/share/jaxws_classes/com/sun/xml/internal/bind/v2/runtime/
H A DMarshallerImpl.java77 import com.sun.xml.internal.bind.v2.runtime.output.XmlOutput;
126 // while createing XmlOutput those values may be set.
171 public void marshal(Object obj, XmlOutput output) throws JAXBException {
176 * Creates {@link XmlOutput} from the given {@link Result} object.
178 final XmlOutput createXmlOutput(Result result) throws JAXBException {
243 protected final <T> void write(Name rootTagName, JaxBeanInfo<T> bi, T obj, XmlOutput out,Runnable postInitAction) throws JAXBException {
277 private void write(Object obj, XmlOutput out, Runnable postInitAction) throws JAXBException {
343 private void prewrite(XmlOutput out, boolean fragment, Runnable postInitAction) throws IOException, SAXException, XMLStreamException {
393 public XmlOutput createWriter( Writer w, String encoding ) {
416 public XmlOutput createWrite
[all...]
H A DXMLSerializer.java65 import com.sun.xml.internal.bind.v2.runtime.output.XmlOutput;
74 * Receives XML serialization event and writes to {@link XmlOutput}.
112 * are thrown from {@link XmlOutput}. They are always considered fatal, and
124 private XmlOutput out;
818 public void startDocument(XmlOutput out,boolean fragment,String schemaLocation,String noNsSchemaLocation) throws IOException, SAXException, XMLStreamException {

Completed in 95 milliseconds