001    package biz.hammurapi.convert;
002    
003    import java.lang.reflect.InvocationHandler;
004    
005    /**
006     * Invocation handler which provides access to the master object.
007     * @author Pavel
008     *
009     */
010    public interface FilterInvocationHandler extends InvocationHandler {
011    
012            Object getMaster();
013    }