public interface TransformableFilter
| Modifier and Type | Method and Description |
|---|---|
<T> T |
transform(FilterTransformer<T> transformer)
Subclasses should include the following code:
|
<T> T transform(FilterTransformer<T> transformer)
@Override
public abstract <T> T transform( FilterTransformer<T> transformer )
{
return transformer.transform( this );
}
T - the interface of the tool specific filtertransformer - the tool specific transformer, may not be nullnull