org.apache.struts.taglib.nested
Class NestedReference
java.lang.Object
org.apache.struts.taglib.nested.NestedReference
- Serializable
public class NestedReference
extends java.lang.Object
implements Serializable
So that a nested hierarchy can penetrate a dynamic JSP include, this class
will hold the details of a bean name and nested property.
beanName
private String beanName
property
private String property
NestedReference
public NestedReference()
Empty constructor.
NestedReference
public NestedReference(String name,
String property)
Constructor takes the all the relevant details to init the object.
name
- String name of the bean that the include is to referenceproperty
- String nested property value that the include will be
continuing on with.
getBeanName
public String getBeanName()
Getter for the bean name
- String value that will be the bean's reference
getNestedProperty
public String getNestedProperty()
Getter for the nested property
- String value that is the nested property for the current nesting
setBeanName
public void setBeanName(String newName)
Setter for the bean name
newName
- String value to set the bean reference.
setNestedProperty
public void setNestedProperty(String newProperty)
Setter for the nested property
newProperty
- String value of the new current nesting level
Copyright B) 2000-2007 - The Apache Software Foundation