Package com.tietoenator.trip.jxp
Interface TdbTransformer<E>
-
- Type Parameters:
E
- The type of object that this transformer will emit
public interface TdbTransformer<E>
Generic object transformation interface, used to help create list factories for environments such as Beans, JSF, etc.
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description E
transform(java.lang.Object o)
Transform the incoming object to the specialized type of the interface
-
-
-
Method Detail
-
transform
E transform(java.lang.Object o)
Transform the incoming object to the specialized type of the interface- Parameters:
o
- The object to transform- Returns:
- An object of the specialized type of the interface
-
-