|
|
Java EE 5 SDK 深圳电信培训中心.徐海蛟老师. |
||||||||
| 上一个类 下一个类 | 框架 无框架 | ||||||||
| 摘要: 嵌套 | 字段 | 构造器 | 方法 | 详细信息: 字段 | 构造器 | 方法 | ||||||||
javax.xml.bind.helpers Class AbstractMarshallerImpl
java.lang.Objectjavax.xml.bind.helpers.AbstractMarshallerImpl
- 所有已实现的接口:
- Marshaller
public abstract class AbstractMarshallerImpl
- extends Object
- implements Marshaller
Partial default Marshaller implementation.
This class provides a partial default implementation for the
Marshaller interface.
The only methods that a JAXB Provider has to implement are
marshal(Object, javax.xml.transform.Result),
marshal(Object, javax.xml.stream.XMLStreamWriter), and
marshal(Object, javax.xml.stream.XMLEventWriter).
- 从以下版本开始:
- JAXB1.0
- 版本:
- $Revision: 1.7 $ $Date: 2006/03/08 17:00:39 $
- 作者:
- Kohsuke Kawaguchi, Sun Microsystems, Inc.
- 另请参见:
Marshaller
| 嵌套类摘要 |
|---|
| Nested classes/interfaces inherited from interface javax.xml.bind.Marshaller |
|---|
Marshaller.Listener |
| 字段摘要 |
|---|
| Fields inherited from interface javax.xml.bind.Marshaller |
|---|
JAXB_ENCODING, JAXB_FORMATTED_OUTPUT, JAXB_FRAGMENT, JAXB_NO_NAMESPACE_SCHEMA_LOCATION, JAXB_SCHEMA_LOCATION |
| 构造器摘要 | |
|---|---|
AbstractMarshallerImpl()
|
|
| 方法摘要 | |
|---|---|
<A extends XmlAdapter>
|
|
getAdapter(Class<A> type)
Gets the adapter associated with the specified type.
AttachmentMarshallergetAttachmentMarshaller()
protected StringgetEncoding()
Convenience method for getting the current output encoding.
ValidationEventHandlergetEventHandler()
Return the current event handler or the default event handler if one hasn't been set.
protected StringgetJavaEncoding(String encoding)
Gets the corresponding Java encoding name from an IANA name.
Marshaller.ListenergetListener()
Return
Marshaller.Listener registered with this Marshaller. NodegetNode(Object obj)
By default, the getNode method is unsupported and throw an
UnsupportedOperationException.protected StringgetNoNSSchemaLocation()
Convenience method for getting the current noNamespaceSchemaLocation.
ObjectgetProperty(String name)
Default implementation of the getProperty method handles the four defined properties in Marshaller.
SchemagetSchema()
Get the JAXP 1.3
Schema object
being used to perform marshal-time validation.protected StringgetSchemaLocation()
Convenience method for getting the current schemaLocation.
protected booleanisFormattedOutput()
Convenience method for getting the formatted output flag.
protected booleanisFragment()
Convenience method for getting the fragment flag.
voidmarshal(Object obj,
ContentHandler handler)
Marshal the content tree rooted at jaxbElement into SAX2 events.
voidmarshal(Object obj,
Node node)
Marshal the content tree rooted at jaxbElement into a DOM tree.
voidmarshal(Object obj,
OutputStream os)
Marshal the content tree rooted at jaxbElement into an output stream.
voidmarshal(Object obj,
Writer w)
Marshal the content tree rooted at jaxbElement into a Writer.
voidmarshal(Object obj,
XMLEventWriter writer)
Marshal the content tree rooted at jaxbElement into a
XMLEventWriter. voidmarshal(Object obj,
XMLStreamWriter writer)
Marshal the content tree rooted at jaxbElement into a
XMLStreamWriter.
<A extends XmlAdapter>
voidsetAdapter(Class<A> type,
A adapter)
Associates a configured instance of
XmlAdapter with this marshaller. voidsetAdapter(XmlAdapter adapter)
Associates a configured instance of
XmlAdapter with this marshaller. voidsetAttachmentMarshaller(AttachmentMarshaller am)
Associate a context that enables binary data within an XML document to be transmitted as XML-binary optimized attachment.
protected voidsetEncoding(String encoding)
Convenience method for setting the output encoding.
voidsetEventHandler(ValidationEventHandler handler)
Allow an application to register a validation event handler.
protected voidsetFormattedOutput(boolean v)
Convenience method for setting the formatted output flag.
protected voidsetFragment(boolean v)
Convenience method for setting the fragment flag.
voidsetListener(Marshaller.Listener listener)
Register marshal event callback
Marshaller.Listener with this Marshaller.protected voidsetNoNSSchemaLocation(String location)
Convenience method for setting the noNamespaceSchemaLocation.
voidsetProperty(String name,
Object value)
Default implementation of the setProperty method handles the four defined properties in Marshaller.
voidsetSchema(Schema schema)
Specify the JAXP 1.3
Schema
object that should be used to validate subsequent marshal operations
against.protected voidsetSchemaLocation(String location)
Convenience method for setting the schemaLocation.
| 类方法继承 java.lang.Object |
|---|
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait |
| Methods inherited from interface javax.xml.bind.Marshaller |
|---|
marshal |
| 构造器详细信息 |
|---|
AbstractMarshallerImpl
public AbstractMarshallerImpl()
| 方法详细信息 |
|---|
marshal
public final void marshal(Object obj, OutputStream os) throws JAXBException
- Description copied from interface:
Marshaller - Marshal the content tree rooted at jaxbElement into an output stream.
- 规范说明:
marshalin interfaceMarshaller
- 参数:
obj- The root of content tree to be marshalled.os- XML will be added to this stream.- 抛出异常:
JAXBException- If any unexpected problem occurs during the marshalling.MarshalException- If theValidationEventHandlerreturns false from its handleEvent method or the Marshaller is unable to marshal obj (or any object reachable from obj). See Marshalling a JAXB element.
marshal
public final void marshal(Object obj, Writer w) throws JAXBException
- Description copied from interface:
Marshaller - Marshal the content tree rooted at jaxbElement into a Writer.
- 规范说明:
marshalin interfaceMarshaller
- 参数:
obj- The root of content tree to be marshalled.w- XML will be sent to this writer.- 抛出异常:
JAXBException- If any unexpected problem occurs during the marshalling.MarshalException- If theValidationEventHandlerreturns false from its handleEvent method or the Marshaller is unable to marshal obj (or any object reachable from obj). See Marshalling a JAXB element.
marshal
public final void marshal(Object obj, ContentHandler handler) throws JAXBException
- Description copied from interface:
Marshaller - Marshal the content tree rooted at jaxbElement into SAX2 events.
- 规范说明:
marshalin interfaceMarshaller
- 参数:
obj- The root of content tree to be marshalled.handler- XML will be sent to this handler as SAX2 events.- 抛出异常:
JAXBException- If any unexpected problem occurs during the marshalling.MarshalException- If theValidationEventHandlerreturns false from its handleEvent method or the Marshaller is unable to marshal obj (or any object reachable from obj). See Marshalling a JAXB element.
marshal
public final void marshal(Object obj, Node node) throws JAXBException
- Description copied from interface:
Marshaller - Marshal the content tree rooted at jaxbElement into a DOM tree.
- 规范说明:
marshalin interfaceMarshaller
- 参数:
obj- The content tree to be marshalled.node- DOM nodes will be added as children of this node. This parameter must be a Node that accepts children (Document,DocumentFragment, orElement)- 抛出异常:
JAXBException- If any unexpected problem occurs during the marshalling.MarshalException- If theValidationEventHandlerreturns false from its handleEvent method or the Marshaller is unable to marshal jaxbElement (or any object reachable from jaxbElement). See Marshalling a JAXB element.
getNode
public Node getNode(Object obj) throws JAXBException
- By default, the getNode method is unsupported and throw
an
UnsupportedOperationException. Implementations that choose to support this method must override this method. - 规范说明:
getNodein interfaceMarshaller
- 参数:
obj- - JAXB Java representation of XML content- 返回:
- the DOM tree view of the contentTree
- 抛出异常:
JAXBException- If any unexpected problem occurs
getEncoding
protected String getEncoding()
- Convenience method for getting the current output encoding.
- 返回:
- the current encoding or "UTF-8" if it hasn't been set.
setEncoding
protected void setEncoding(String encoding)
- Convenience method for setting the output encoding.
- 参数:
encoding- a valid encoding as specified in the Marshaller class documentation
getSchemaLocation
protected String getSchemaLocation()
- Convenience method for getting the current schemaLocation.
- 返回:
- the current schemaLocation or null if it hasn't been set
setSchemaLocation
protected void setSchemaLocation(String location)
- Convenience method for setting the schemaLocation.
- 参数:
location- the schemaLocation value
getNoNSSchemaLocation
protected String getNoNSSchemaLocation()
- Convenience method for getting the current noNamespaceSchemaLocation.
- 返回:
- the current noNamespaceSchemaLocation or null if it hasn't been set
setNoNSSchemaLocation
protected void setNoNSSchemaLocation(String location)
- Convenience method for setting the noNamespaceSchemaLocation.
- 参数:
location- the noNamespaceSchemaLocation value
isFormattedOutput
protected boolean isFormattedOutput()
- Convenience method for getting the formatted output flag.
- 返回:
- the current value of the formatted output flag or false if it hasn't been set.
setFormattedOutput
protected void setFormattedOutput(boolean v)
- Convenience method for setting the formatted output flag.
- 参数:
v- value of the formatted output flag.
isFragment
protected boolean isFragment()
- Convenience method for getting the fragment flag.
- 返回:
- the current value of the fragment flag or false if it hasn't been set.
setFragment
protected void setFragment(boolean v)
- Convenience method for setting the fragment flag.
- 参数:
v- value of the fragment flag.
getJavaEncoding
protected String getJavaEncoding(String encoding) throws UnsupportedEncodingException
- Gets the corresponding Java encoding name from an IANA name.
This method is a helper method for the derived class to convert
encoding names.
- 抛出异常:
UnsupportedEncodingException- If this implementation couldn't find the Java encoding name.
setProperty
public void setProperty(String name, Object value) throws PropertyException
- Default implementation of the setProperty method handles
the four defined properties in Marshaller. If a provider
needs to handle additional properties, it should override
this method in a derived class.
- 规范说明:
setPropertyin interfaceMarshaller
- 参数:
name- the name of the property to be set. This value can either be specified using one of the constant fields or a user supplied string.value- the value of the property to be set- 抛出异常:
PropertyException- when there is an error processing the given property or value
getProperty
public Object getProperty(String name) throws PropertyException
- Default implementation of the getProperty method handles
the four defined properties in Marshaller. If a provider
needs to support additional provider specific properties,
it should override this method in a derived class.
- 规范说明:
getPropertyin interfaceMarshaller
- 参数:
name- the name of the property to retrieve- 返回:
- the value of the requested property
- 抛出异常:
PropertyException- when there is an error retrieving the given property or value property name
getEventHandler
public ValidationEventHandler getEventHandler() throws JAXBException
- Description copied from interface:
Marshaller - Return the current event handler or the default event handler if one
hasn't been set.
- 规范说明:
getEventHandlerin interfaceMarshaller
- 返回:
- the current ValidationEventHandler or the default event handler if it hasn't been set
- 抛出异常:
JAXBException- if an error was encountered while getting the current event handler- 另请参见:
Marshaller.getEventHandler()
setEventHandler
public void setEventHandler(ValidationEventHandler handler) throws JAXBException
- Description copied from interface:
Marshaller - Allow an application to register a validation event handler.
The validation event handler will be called by the JAXB Provider if any validation errors are encountered during calls to any of the marshal API's. If the client application does not register a validation event handler before invoking one of the marshal methods, then validation events will be handled by the default event handler which will terminate the marshal operation after the first error or fatal error is encountered.
Calling this method with a null parameter will cause the Marshaller to revert back to the default default event handler.
- 规范说明:
setEventHandlerin interfaceMarshaller
- 参数:
handler- the validation event handler- 抛出异常:
JAXBException- if an error was encountered while setting the event handler- 另请参见:
Marshaller.setEventHandler(ValidationEventHandler)
marshal
public void marshal(Object obj, XMLEventWriter writer) throws JAXBException
- Description copied from interface:
Marshaller - Marshal the content tree rooted at jaxbElement into a
XMLEventWriter. - 规范说明:
marshalin interfaceMarshaller
- 参数:
obj- The content tree rooted at jaxbElement to be marshalled.writer- XML will be sent to this writer.- 抛出异常:
JAXBException- If any unexpected problem occurs during the marshalling.MarshalException- If theValidationEventHandlerreturns false from its handleEvent method or the Marshaller is unable to marshal obj (or any object reachable from obj). See Marshalling a JAXB element.
marshal
public void marshal(Object obj, XMLStreamWriter writer) throws JAXBException
- Description copied from interface:
Marshaller - Marshal the content tree rooted at jaxbElement into a
XMLStreamWriter. - 规范说明:
marshalin interfaceMarshaller
- 参数:
obj- The content tree to be marshalled.writer- XML will be sent to this writer.- 抛出异常:
JAXBException- If any unexpected problem occurs during the marshalling.MarshalException- If theValidationEventHandlerreturns false from its handleEvent method or the Marshaller is unable to marshal obj (or any object reachable from obj). See Marshalling a JAXB element.
setSchema
public void setSchema(Schema schema)
- Description copied from interface:
Marshaller - Specify the JAXP 1.3
Schemaobject that should be used to validate subsequent marshal operations against. Passing null into this method will disable validation.This method allows the caller to validate the marshalled XML as it's marshalled.
Initially this property is set to null.
- 规范说明:
setSchemain interfaceMarshaller
- 参数:
schema- Schema object to validate marshal operations against or null to disable validation
getSchema
public Schema getSchema()
- Description copied from interface:
Marshaller - Get the JAXP 1.3
Schemaobject being used to perform marshal-time validation. If there is no Schema set on the marshaller, then this method will return null indicating that marshal-time validation will not be performed. - 规范说明:
getSchemain interfaceMarshaller
- 返回:
- the Schema object being used to perform marshal-time validation or null if not present.
setAdapter
public void setAdapter(XmlAdapter adapter)
- Description copied from interface:
Marshaller - Associates a configured instance of
XmlAdapterwith this marshaller.This is a convenience method that invokes
setAdapter(adapter.getClass(),adapter);. - 规范说明:
setAdapterin interfaceMarshaller
setAdapter
public <A extends XmlAdapter> void setAdapter(Class<A> type, A adapter)
- Description copied from interface:
Marshaller - Associates a configured instance of
XmlAdapterwith this marshaller.Every marshaller internally maintains a
Map<Class,XmlAdapter>, which it uses for marshalling classes whose fields/methods are annotated withXmlJavaTypeAdapter.This method allows applications to use a configured instance of
XmlAdapter. When an instance of an adapter is not given, a marshaller will create one by invoking its default constructor. - 规范说明:
setAdapterin interfaceMarshaller
- 参数:
type- The type of the adapter. The specified instance will be used whenXmlJavaTypeAdapter.value()refers to this type.adapter- The instance of the adapter to be used. If null, it will un-register the current adapter set for this type.
getAdapter
public <A extends XmlAdapter> A getAdapter(Class<A> type)
- Description copied from interface:
Marshaller - Gets the adapter associated with the specified type.
This is the reverse operation of the
Marshaller.setAdapter(javax.xml.bind.annotation.adapters.XmlAdapter)method. - 规范说明:
getAdapterin interfaceMarshaller
setAttachmentMarshaller
public void setAttachmentMarshaller(AttachmentMarshaller am)
- Description copied from interface:
Marshaller Associate a context that enables binary data within an XML document to be transmitted as XML-binary optimized attachment. The attachment is referenced from the XML document content model by content-id URIs(cid) references stored within the xml document.
- 规范说明:
setAttachmentMarshallerin interfaceMarshaller
getAttachmentMarshaller
public AttachmentMarshaller getAttachmentMarshaller()
- 规范说明:
getAttachmentMarshallerin interfaceMarshaller
setListener
public void setListener(Marshaller.Listener listener)
- Description copied from interface:
Marshaller Register marshal event callback
Marshaller.Listenerwith thisMarshaller.There is only one Listener per Marshaller. Setting a Listener replaces the previous set Listener. One can unregister current Listener by setting listener to null.
- 规范说明:
setListenerin interfaceMarshaller
- 参数:
listener- an instance of a class that implementsMarshaller.Listener
getListener
public Marshaller.Listener getListener()
- Description copied from interface:
Marshaller Return
Marshaller.Listenerregistered with thisMarshaller.- 规范说明:
getListenerin interfaceMarshaller
- 返回:
- registered
Marshaller.Listenerornullif no Listener is registered with this Marshaller.
|
|
Java EE 5 SDK 深圳电信培训中心.徐海蛟老师. |
||||||||
| 上一个类 下一个类 | 框架 无框架 | ||||||||
| 摘要: 嵌套 | 字段 | 构造器 | 方法 | 详细信息: 字段 | 构造器 | 方法 | ||||||||
提交错误或意见
版权所有 2007 Sun Microsystems, Inc. 保留所有权利。 请遵守许可证条款。深圳电信培训中心.徐海蛟老师教学参考.
javax.xml.bind.helpers.AbstractMarshallerImpl