diff -r 2a00bdf753bb -r a0d8b5ab79a2 launcher/src/main/java/org/apidesign/bck2brwsr/launcher/MethodInvocation.java --- a/launcher/src/main/java/org/apidesign/bck2brwsr/launcher/MethodInvocation.java Wed Dec 26 17:10:01 2012 +0100 +++ b/launcher/src/main/java/org/apidesign/bck2brwsr/launcher/MethodInvocation.java Tue Jan 22 19:16:38 2013 +0100 @@ -28,12 +28,14 @@ final CountDownLatch wait = new CountDownLatch(1); final String className; final String methodName; + final String html; private String result; private Throwable exception; - MethodInvocation(String className, String methodName) { + MethodInvocation(String className, String methodName, String html) { this.className = className; this.methodName = methodName; + this.html = html; } void await(long timeOut) throws InterruptedException {