org.apache.struts2.views.xslt |
|
Java Source File Name | Type | Comment |
AbstractAdapterElement.java | Class | AbstractAdapterElement extends the abstract Node type and implements
the DOM Element interface. |
AbstractAdapterNode.java | Class | AbstractAdapterNode is the base for childAdapters that expose a read-only view
of a Java object as a DOM Node. |
AdapterFactory.java | Class | AdapterFactory produces Node adapters for Java object types.
Adapter classes are generally instantiated dynamically via a no-args constructor
and populated with their context information via the AdapterNode interface.
This factory supports proxying of generic DOM Node trees, allowing arbitrary
Node types to be mixed together. |
AdapterNode.java | Interface | |
ArrayAdapter.java | Class | |
BeanAdapter.java | 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. |
CollectionAdapter.java | Class | |
MapAdapter.java | Class | MapAdapter adapters a java.util.Map type to an XML DOM with the following
structure:
...
...
... |
ProxyAttrAdapter.java | Class | ProxyAttrAdapter is a pass-through adapter for objects which already
implement the Attr interface. |
ProxyElementAdapter.java | Class | ProxyElementAdapter is a pass-through adapter for objects which already
implement the Element interface. |
ProxyNamedNodeMap.java | Class | A NamedNodeMap that wraps the Nodes returned in their proxies.
Note: Since maps have no guaranteed order we don't need to worry about identity
here as we do with "child" adapters. |
ProxyNodeAdapter.java | Class | ProxyNodeAdapter is a read-only delegating adapter for objects which already
implement the Node interface. |
ProxyTextNodeAdapter.java | Class | ProxyTextNodeAdapter is a pass-through adapter for objects which already
implement the Text interface. |
ServletURIResolver.java | Class | ServletURIResolver is a URIResolver that can retrieve resources from the servlet context using the scheme "response". |
SimpleAdapterDocument.java | Class | SimpleAdapterDocument adapted a Java object and presents it as
a Document. |
SimpleNodeList.java | Class | |
SimpleTextNode.java | Class | |
StringAdapter.java | Class | StringAdapter adapts a Java String value to a DOM Element with the specified
property name containing the String's text.
e.g. |
XSLTResult.java | Class |
XSLTResult uses XSLT to transform action object to XML. |
XSLTResultTest.java | Class | Unit test for
XSLTResult . |