FileDocCategorySizeDatePackage
AdapterNode.javaAPI DocExample2346Mon Jul 23 13:26:44 BST 2007org.apache.struts2.views.xslt

AdapterNode

public interface AdapterNode implements Node

Fields Summary
Constructors Summary
Methods Summary
public AdapterFactorygetAdapterFactory()
The adapter factory that created this node.

public org.w3c.dom.NodegetChildAfter(org.w3c.dom.Node thisNode)
The child node after the specified sibling

public org.w3c.dom.NodegetChildBefore(org.w3c.dom.Node thisNode)
The child node before the specified sibling

public org.apache.struts2.views.xslt.AdapterNodegetParent()
The parent adapter node of this node. Note that our parent must be another adapter node, but our children may be any kind of Node.

public java.lang.StringgetPropertyName()
The name of the Java object (property) that we are adapting

public java.lang.ObjectgetPropertyValue()
The Java object (property) that we are adapting

public voidsetAdapterFactory(AdapterFactory factory)
The adapter factory that created this node.

public voidsetParent(org.apache.struts2.views.xslt.AdapterNode parent)
The parent adapter node of this node. Note that our parent must be another adapter node, but our children may be any kind of Node.

public voidsetPropertyName(java.lang.String name)
The name of the Java object (property) that we are adapting

public voidsetPropertyValue(java.lang.Object prop)
The Java object (property) that we are adapting