launcher/src/main/java/org/apidesign/bck2brwsr/launcher/MethodInvocation.java
changeset 526 a0d8b5ab79a2
parent 385 2a00bdf753bb
     1.1 --- a/launcher/src/main/java/org/apidesign/bck2brwsr/launcher/MethodInvocation.java	Wed Dec 26 17:10:01 2012 +0100
     1.2 +++ b/launcher/src/main/java/org/apidesign/bck2brwsr/launcher/MethodInvocation.java	Tue Jan 22 19:16:38 2013 +0100
     1.3 @@ -28,12 +28,14 @@
     1.4      final CountDownLatch wait = new CountDownLatch(1);
     1.5      final String className;
     1.6      final String methodName;
     1.7 +    final String html;
     1.8      private String result;
     1.9      private Throwable exception;
    1.10  
    1.11 -    MethodInvocation(String className, String methodName) {
    1.12 +    MethodInvocation(String className, String methodName, String html) {
    1.13          this.className = className;
    1.14          this.methodName = methodName;
    1.15 +        this.html = html;
    1.16      }
    1.17      
    1.18      void await(long timeOut) throws InterruptedException {