1 /*2 * Created on 04-Apr-20033 */4 package test.mockobjects.dynamic;5 6 /**7 * @author dev8 */9 public interface DummyInterface {10 public String twoArgMethod( String arg1, String arg2 ) throws Throwable ;11 public String oneArgMethod( String arg1);12 13 public void noArgMethodVoid();14 public String noArgMethod();15 }16