| org.apache.cxf.aegis.xml.MessageWriter
All known Subclasses: org.apache.cxf.aegis.xml.stax.ElementWriter, org.apache.cxf.aegis.xml.AbstractMessageWriter,
MessageWriter | public interface MessageWriter (Code) | | Writes messages to an output stream.
author: Dan Diephouse |
close | void close()(Code) | | Tells the MessageWriter that writing operations are completed so it can
write the end element.
|
getPrefixForNamespace | String getPrefixForNamespace(String namespace, String hint)(Code) | | Get a prefix for a namespace. After calling this, the prefix returned is
registered with the namespace. This method will make an attempt to
use the hint prefix if possible. If the namespace is already registered
or the hint is already registered with a different namespace then the
behavior will be the same as the non-hint version.
Parameters: namespace - the namespace to retrieve the prefix for Parameters: hint - the hint for the prefix. the prefix associated with the namespace |
writeValueAsBoolean | void writeValueAsBoolean(boolean b)(Code) | | |
writeValueAsDouble | void writeValueAsDouble(Double double1)(Code) | | |
writeValueAsFloat | void writeValueAsFloat(Float f)(Code) | | |
writeValueAsLong | void writeValueAsLong(Long l)(Code) | | |
writeValueAsShort | void writeValueAsShort(Short short1)(Code) | | |
writeXsiNil | void writeXsiNil()(Code) | | |
writeXsiType | void writeXsiType(QName qn)(Code) | | As per 2.6.1 in
XML Schema Part 1: "An element information item in an instance may,
however, explicitly assert its type using the attribute
xsi:type ."
Parameters: type - the QName of the type being referenced. |
|
|