Package org.apache.tiles.ognl
Interface NestedObjectExtractor<T>
-
- Type Parameters:
T
- The type of the root object.
- All Known Implementing Classes:
TilesApplicationContextNestedObjectExtractor
public interface NestedObjectExtractor<T>
Extracts an object using another object as a basis.- Since:
- 2.2.0
- Version:
- $Rev: 817009 $ $Date: 2009-09-20 21:26:26 +1000 (Sun, 20 Sep 2009) $
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description java.lang.Object
getNestedObject(T obj)
Extracts the nested object.
-
-
-
Method Detail
-
getNestedObject
java.lang.Object getNestedObject(T obj)
Extracts the nested object.- Parameters:
obj
- The root object.- Returns:
- The extracted nested object.
- Since:
- 2.2.0
-
-