temmental
Interface ObjectFilter<In,Out>

Type Parameters:
In - The input class
Out - The output class
All Known Subinterfaces:
Filter

public interface ObjectFilter<In,Out>

Interface to implement to create a display transformer. It transforms the value of In type to an object of Out type


Method Summary
 Out apply(In value)
          Return an object of Out type initialized with the specified In object.
 

Method Detail

apply

Out apply(In value)
Return an object of Out type initialized with the specified In object. This object is displayed or is given to the next ObjectFilter of the chain.

Parameters:
value - the specified object
Returns:
an object of Out type or null (in this case, the filter chains ends)