launcher/src/main/java/org/apidesign/bck2brwsr/launcher/MethodInvocation.java
author Jaroslav Tulach <jaroslav.tulach@apidesign.org>
Tue, 22 Jan 2013 19:16:38 +0100
changeset 526 a0d8b5ab79a2
parent 385 2a00bdf753bb
permissions -rw-r--r--
@BrwsrTest can reference @HtmlFragment and manipulate it
     1 /**
     2  * Back 2 Browser Bytecode Translator
     3  * Copyright (C) 2012 Jaroslav Tulach <jaroslav.tulach@apidesign.org>
     4  *
     5  * This program is free software: you can redistribute it and/or modify
     6  * it under the terms of the GNU General Public License as published by
     7  * the Free Software Foundation, version 2 of the License.
     8  *
     9  * This program is distributed in the hope that it will be useful,
    10  * but WITHOUT ANY WARRANTY; without even the implied warranty of
    11  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
    12  * GNU General Public License for more details.
    13  *
    14  * You should have received a copy of the GNU General Public License
    15  * along with this program. Look for COPYING file in the top folder.
    16  * If not, see http://opensource.org/licenses/GPL-2.0.
    17  */
    18 package org.apidesign.bck2brwsr.launcher;
    19 
    20 import java.util.concurrent.CountDownLatch;
    21 import java.util.concurrent.TimeUnit;
    22 
    23 /**
    24  *
    25  * @author Jaroslav Tulach <jtulach@netbeans.org>
    26  */
    27 public final class MethodInvocation {
    28     final CountDownLatch wait = new CountDownLatch(1);
    29     final String className;
    30     final String methodName;
    31     final String html;
    32     private String result;
    33     private Throwable exception;
    34 
    35     MethodInvocation(String className, String methodName, String html) {
    36         this.className = className;
    37         this.methodName = methodName;
    38         this.html = html;
    39     }
    40     
    41     void await(long timeOut) throws InterruptedException {
    42         wait.await(timeOut, TimeUnit.MILLISECONDS);
    43     }
    44     
    45     void result(String r, Throwable e) {
    46         this.result = r;
    47         this.exception = e;
    48         wait.countDown();
    49     }
    50 
    51     @Override
    52     public String toString() {
    53         if (exception != null) {
    54             return exception.toString();
    55         }
    56         return result;
    57     }
    58     
    59 }