Uses of Interface
org.apache.struts2.result.xslt.AdapterNode
-
Uses of AdapterNode in org.apache.struts2.result.xslt
Classes in org.apache.struts2.result.xslt that implement AdapterNodeModifier and TypeClassDescriptionclass
AbstractAdapterElement extends the abstract Node type and implements the DOM Element interface.class
AbstractAdapterNode is the base for childAdapters that expose a read-only view of a Java object as a DOM Node.class
class
This class is the most general type of adapter, utilizing reflective introspection to present a DOM view of all of the public properties of its value.class
class
MapAdapter adapters a java.util.Map type to an XML DOM with the following structure:class
ProxyAttrAdapter is a pass-through adapter for objects which already implement the Attr interface.class
ProxyElementAdapter is a pass-through adapter for objects which already implement the Element interface.class
ProxyNodeAdapter is a read-only delegating adapter for objects which already implement the Node interface.class
ProxyTextNodeAdapter is a pass-through adapter for objects which already implement the Text interface.class
SimpleAdapterDocument adapted a Java object and presents it as a Document.class
class
StringAdapter adapts a Java String value to a DOM Element with the specified property name containing the String's text.Methods in org.apache.struts2.result.xslt that return AdapterNodeModifier and TypeMethodDescriptionAbstractAdapterNode.getParent()
AdapterNode.getParent()
The parent adapter node of this node.Methods in org.apache.struts2.result.xslt with parameters of type AdapterNodeModifier and TypeMethodDescriptionAdapterFactory.adaptNode
(AdapterNode parent, String propertyName, Object value) Create an Node adapter for a child element.AdapterFactory.adaptNullValue
(AdapterNode parent, String propertyName) Create an appropriate adapter for a null value.AdapterFactory.proxyNamedNodeMap
(AdapterNode parent, NamedNodeMap nnm) AdapterFactory.proxyNode
(AdapterNode parent, Node node) Construct a proxy adapter for a value that is an existing DOM Node.protected void
AbstractAdapterNode.setContext
(AdapterFactory adapterFactory, AdapterNode parent, String propertyName, Object value) void
AbstractAdapterNode.setParent
(AdapterNode parent) void
AdapterNode.setParent
(AdapterNode parent) Constructors in org.apache.struts2.result.xslt with parameters of type AdapterNodeModifierConstructorDescriptionArrayAdapter
(AdapterFactory adapterFactory, AdapterNode parent, String propertyName, Object value) BeanAdapter
(AdapterFactory adapterFactory, AdapterNode parent, String propertyName, Object value) CollectionAdapter
(AdapterFactory rootAdapterFactory, AdapterNode parent, String propertyName, Object value) MapAdapter
(AdapterFactory adapterFactory, AdapterNode parent, String propertyName, Map<?, ?> value) ProxyAttrAdapter
(AdapterFactory factory, AdapterNode parent, Attr value) ProxyElementAdapter
(AdapterFactory factory, AdapterNode parent, Element value) ProxyNamedNodeMap
(AdapterFactory factory, AdapterNode parent, NamedNodeMap nodes) protected
ProxyNodeAdapter
(AdapterFactory factory, AdapterNode parent, Node value) ProxyTextNodeAdapter
(AdapterFactory factory, AdapterNode parent, Text value) SimpleAdapterDocument
(AdapterFactory adapterFactory, AdapterNode parent, String propertyName, Object value) SimpleTextNode
(AdapterFactory rootAdapterFactory, AdapterNode parent, String propertyName, Object value) StringAdapter
(AdapterFactory adapterFactory, AdapterNode parent, String propertyName, String value)