FilterInvocationHandler.java

biz/hammurapi/convert/FilterInvocationHandler.java

Violations

Inspector Message Severity Location
Java Inspector 048 Copyrights information should be present in each file. 1

Source code

1package biz.hammurapi.convert;
2
3import java.lang.reflect.InvocationHandler;
4
5/**
6 * Invocation handler which provides access to the master object.
7 * @author Pavel
8 *
9 */
10public interface FilterInvocationHandler extends InvocationHandler {
11
12 Object getMaster();
13}
14