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