Applies this Processor to the given input object, in the context of the given context object. Note that classes that implement this Processor interface may return the object passed in as the input object. Therefore, if the input object is mutable, the caller of the applyProcessor method should be a
(T obj, Object context)
| 44 | * @return The modified object, of the same class as the input object. |
| 45 | */ |
| 46 | public T applyProcessor(T obj, Object context); |
| 47 | |
| 48 | /** |
| 49 | * The class of object this Processor acts upon. |
no outgoing calls
no test coverage detected