|
||||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
SUMMARY: INNER | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD |
org.apache.struts.taglib.nested Class NestedPropertyHelper
java.lang.Object | +--org.apache.struts.taglib.nested.NestedPropertyHelper
- public class NestedPropertyHelper
- extends java.lang.Object
A simple helper class that does everything that needs to be done to get the nested tag extension to work. The tags will pass in their relative properties and this class will leverage the accessibility of the request object to calculate the nested references and manage them from a central place.
The helper method setNestedProperties(javax.servlet.http.HttpServletRequest, org.apache.struts.taglib.nested.NestedPropertySupport)
takes a reference to the
tag itself so all the simpler tags can have their references managed from a
central location. From here, the reference to a provided name is also
preserved for use.
With all tags keeping track of themselves, we only have to seek to the next level, or parent tag, were a tag will append a dot and it's own property.
- Since:
- Struts 1.1
- Version:
- $Rev: 54929 $ $Date: 2004-10-16 17:38:42 +0100 (Sat, 16 Oct 2004) $
Field Summary | |
static java.lang.String |
NESTED_INCLUDES_KEY
|
Constructor Summary | |
NestedPropertyHelper()
|
Method Summary | |
private static java.lang.String |
calculateRelativeProperty(java.lang.String property,
java.lang.String parent)
|
static void |
deleteReference(javax.servlet.http.HttpServletRequest request)
Deletes the nested reference from the request object. |
static java.lang.String |
getAdjustedProperty(javax.servlet.http.HttpServletRequest request,
java.lang.String property)
Get the adjusted property. |
static java.lang.String |
getCurrentName(javax.servlet.http.HttpServletRequest request,
NestedNameSupport nested)
Returns the bean name from the request object that the properties are nesting against. |
static java.lang.String |
getCurrentProperty(javax.servlet.http.HttpServletRequest request)
Returns the current nesting property from the request object. |
private static NestedReference |
referenceInstance(javax.servlet.http.HttpServletRequest request)
Pulls the current nesting reference from the request object, and if there isn't one there, then it will create one and set it. |
static void |
setName(javax.servlet.http.HttpServletRequest request,
java.lang.String name)
Sets the provided name into the request object for reference by the other nested tags. |
static void |
setNestedProperties(javax.servlet.http.HttpServletRequest request,
NestedPropertySupport tag)
Helper method that will set all the relevant nesting properties for the provided tag reference depending on the implementation. |
static void |
setProperty(javax.servlet.http.HttpServletRequest request,
java.lang.String property)
Sets the provided property into the request object for reference by the other nested tags. |
Methods inherited from class java.lang.Object |
|
Field Detail |
NESTED_INCLUDES_KEY
public static final java.lang.String NESTED_INCLUDES_KEY
Constructor Detail |
NestedPropertyHelper
public NestedPropertyHelper()
Method Detail |
getCurrentProperty
public static final java.lang.String getCurrentProperty(javax.servlet.http.HttpServletRequest request)
- Returns the current nesting property from the request object.
- Parameters:
request
- object to fetch the property reference from- Returns:
- String of the bean name to nest against
getCurrentName
public static final java.lang.String getCurrentName(javax.servlet.http.HttpServletRequest request, NestedNameSupport nested)
Returns the bean name from the request object that the properties are nesting against.
The requirement of the tag itself could be removed in the future, but is required if support for the
- Parameters:
request
- object to fetch the bean reference fromnested
- tag from which to start the search from- Returns:
- the string of the bean name to be nesting against
getAdjustedProperty
public static final java.lang.String getAdjustedProperty(javax.servlet.http.HttpServletRequest request, java.lang.String property)
- Get the adjusted property. Apply the provided property, to the property already stored in the request object.
- Parameters:
request
- to pull the reference fromproperty
- to retrieve the evaluated nested property with- Returns:
- String of the final nested property reference.
setProperty
public static final void setProperty(javax.servlet.http.HttpServletRequest request, java.lang.String property)
- Sets the provided property into the request object for reference by the other nested tags.
- Parameters:
request
- object to set the new property intoproperty
- String to set the property to
setName
public static final void setName(javax.servlet.http.HttpServletRequest request, java.lang.String name)
- Sets the provided name into the request object for reference by the other nested tags.
- Parameters:
request
- object to set the new name intoname
- String to set the name to
deleteReference
public static final void deleteReference(javax.servlet.http.HttpServletRequest request)
- Deletes the nested reference from the request object.
- Parameters:
request
- object to remove the reference from
setNestedProperties
public static void setNestedProperties(javax.servlet.http.HttpServletRequest request, NestedPropertySupport tag)
- Helper method that will set all the relevant nesting properties for the provided tag reference depending on the implementation.
- Parameters:
request
- object to pull references fromtag
- to set the nesting values into
referenceInstance
private static final NestedReference referenceInstance(javax.servlet.http.HttpServletRequest request)
- Pulls the current nesting reference from the request object, and if there isn't one there, then it will create one and set it.
- Parameters:
request
- object to manipulate the reference into- Returns:
- current nesting reference as stored in the request object
calculateRelativeProperty
private static java.lang.String calculateRelativeProperty(java.lang.String property, java.lang.String parent)
|
||||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
SUMMARY: INNER | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD |
Copyright © 2000-2005 - The Apache Software Foundation