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
All Methods Instance Methods Abstract Methods Modifier and Type Method Description java.util.List<RecursiveValue<?>>
getChildren()
Returns the list of children for a given value.T
getValue()
Returns the original object related to this value.
-
-
-
Method Detail
-
getChildren
java.util.List<RecursiveValue<?>> getChildren()
Returns the list of children for a given value.- Returns:
- a
List
.
-
-