launcher/src/main/java/org/apidesign/bck2brwsr/launcher/Launcher.java
changeset 526 a0d8b5ab79a2
parent 382 57fc3a0563c9
child 613 a4a06840209a
     1.1 --- a/launcher/src/main/java/org/apidesign/bck2brwsr/launcher/Launcher.java	Tue Dec 25 15:08:39 2012 +0100
     1.2 +++ b/launcher/src/main/java/org/apidesign/bck2brwsr/launcher/Launcher.java	Tue Jan 22 19:16:38 2013 +0100
     1.3 @@ -32,12 +32,12 @@
     1.4      Launcher() {
     1.5      }
     1.6      
     1.7 -    abstract MethodInvocation addMethod(Class<?> clazz, String method) throws IOException; 
     1.8 +    abstract MethodInvocation addMethod(Class<?> clazz, String method, String html) throws IOException; 
     1.9  
    1.10      public abstract void initialize() throws IOException;
    1.11      public abstract void shutdown() throws IOException;
    1.12 -    public MethodInvocation invokeMethod(Class<?> clazz, String method) throws IOException {
    1.13 -        return addMethod(clazz, method);
    1.14 +    public MethodInvocation invokeMethod(Class<?> clazz, String method, String html) throws IOException {
    1.15 +        return addMethod(clazz, method, html);
    1.16      }
    1.17      
    1.18