boot/src/main/java/org/apidesign/html/boot/spi/Fn.java
author Jaroslav Tulach <jaroslav.tulach@apidesign.org>
Wed, 19 Jun 2013 22:29:41 +0200
branchclassloader
changeset 128 3cc64ce45056
parent 127 28ea7ef534e9
child 163 2652760705d6
permissions -rw-r--r--
displayPage should be blocking, no need to expose resource finder
     1 /**
     2  * HTML via Java(tm) Language Bindings
     3  * Copyright (C) 2013 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. apidesign.org
    13  * designates this particular file as subject to the
    14  * "Classpath" exception as provided by apidesign.org
    15  * in the License file that accompanied this code.
    16  *
    17  * You should have received a copy of the GNU General Public License
    18  * along with this program. Look for COPYING file in the top folder.
    19  * If not, see http://wiki.apidesign.org/wiki/GPLwithClassPathException
    20  */
    21 package org.apidesign.html.boot.spi;
    22 
    23 import java.net.URL;
    24 import java.util.Collection;
    25 
    26 /**
    27  *
    28  * @author Jaroslav Tulach <jaroslav.tulach@apidesign.org>
    29  */
    30 public abstract class Fn {
    31     public abstract Object invoke(Object thiz, Object... args) throws Exception;
    32     
    33     public interface Presenter {
    34         public Fn defineFn(String code, String... names);
    35         public void displayPage(URL page, Runnable onPageLoad);
    36     }
    37 }