Package org.apache.tapestry5.commons
Interface RecursiveValue<T>
public interface RecursiveValue<T>
Interface that represents a parent-children relationship. It's used
in the Tapestry's Recursive
component.
This was contributed by KGL PubFactory.
- Since:
- 5.9.0
-
Method Summary
Modifier and TypeMethodDescriptionList<RecursiveValue<?>>
Returns the list of children for a given value.getValue()
Returns the original object related to this value.
-
Method Details
-
getChildren
List<RecursiveValue<?>> getChildren()Returns the list of children for a given value.- Returns:
- a
List
.
-
getValue
Returns the original object related to this value.- Returns:
- an
Object
-