Exit Full View

Feather2 / feather2-javaexamples / src / main / java / compareInterface / Testing.java

package compareInterface;

/**
 * See CompareInterfaceMethod
 */
public class Testing {
    public InterfaceFoo foo = new ImplementationBar(1);

    public int test() {
        return foo.plusTwo();
    }

}