minesweeper/src/main/java/org/apidesign/demo/minesweeper/Main.java
author Jaroslav Tulach <jtulach@netbeans.org>
Thu, 27 Mar 2014 15:37:25 +0100
branchibrwsr
changeset 125 d7b40912b16d
parent 124 533c2be1747c
child 134 dad4f0d41b9f
permissions -rw-r--r--
Creating ibrwsr profile and using classical component injection to find the right presenter
jtulach@63
     1
/**
jtulach@63
     2
 * The MIT License (MIT)
jtulach@63
     3
 *
jtulach@63
     4
 * Copyright (C) 2013 Jaroslav Tulach <jaroslav.tulach@apidesign.org>
jtulach@63
     5
 *
jtulach@63
     6
 * Permission is hereby granted, free of charge, to any person obtaining a copy
jtulach@63
     7
 * of this software and associated documentation files (the "Software"), to deal
jtulach@63
     8
 * in the Software without restriction, including without limitation the rights
jtulach@63
     9
 * to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
jtulach@63
    10
 * copies of the Software, and to permit persons to whom the Software is
jtulach@63
    11
 * furnished to do so, subject to the following conditions:
jtulach@63
    12
 *
jtulach@63
    13
 * The above copyright notice and this permission notice shall be included in
jtulach@63
    14
 * all copies or substantial portions of the Software.
jtulach@63
    15
 *
jtulach@63
    16
 * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
jtulach@63
    17
 * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
jtulach@63
    18
 * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
jtulach@63
    19
 * AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
jtulach@63
    20
 * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
jtulach@63
    21
 * OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
jtulach@63
    22
 * THE SOFTWARE.
jtulach@63
    23
 */
jtulach@63
    24
package org.apidesign.demo.minesweeper;
jtulach@63
    25
jtulach@63
    26
import net.java.html.boot.BrowserBuilder;
jtulach@112
    27
import org.netbeans.api.nbrwsr.OpenHTMLRegistration;
jtulach@112
    28
import org.openide.awt.ActionID;
jtulach@112
    29
import org.openide.awt.ActionReference;
jtulach@112
    30
import org.openide.awt.ActionReferences;
jtulach@63
    31
jtulach@63
    32
jtulach@63
    33
/** Bootstrap and initialization. */
jtulach@63
    34
public final class Main {
jtulach@63
    35
    private Main() {
jtulach@63
    36
    }
jtulach@90
    37
jtulach@63
    38
    /** Launches the browser */
jtulach@63
    39
    public static void main(String... args) throws Exception {
jtulach@125
    40
        BrowserBuilder.newBrowser().
jtulach@63
    41
            loadPage("pages/index.html").
jtulach@90
    42
            loadClass(MinesModel.class).
jtulach@90
    43
            invoke("main", args).
jtulach@63
    44
            showAndWait();
jtulach@63
    45
        System.exit(0);
jtulach@63
    46
    }
jtulach@63
    47
    
jtulach@112
    48
    //
jtulach@112
    49
    // the following annotations generate registration for NetBeans,
jtulach@112
    50
    // they are harmless in other packaging schemes
jtulach@112
    51
    //
jtulach@112
    52
    
jtulach@112
    53
    @ActionID(
jtulach@112
    54
            category = "Games",
jtulach@112
    55
            id = "org.apidesign.demo.minesweeper"
jtulach@112
    56
    )
jtulach@112
    57
    @OpenHTMLRegistration(
jtulach@112
    58
        url="index.html",
jtulach@119
    59
        displayName = "Play Minesweeper!",
jtulach@119
    60
        iconBase = "org/apidesign/demo/minesweeper/ko4j.png"
jtulach@112
    61
    )
jtulach@112
    62
    @ActionReferences({
jtulach@112
    63
        @ActionReference(path = "Menu/Window"),
jtulach@120
    64
        @ActionReference(path = "Toolbars/Games")
jtulach@112
    65
    })
jtulach@112
    66
    //
jtulach@112
    67
    // end of NetBeans actions registration
jtulach@112
    68
    //
jtulach@112
    69
    
jtulach@63
    70
    /** Called when page is ready */
jtulach@112
    71
    public static void onPageLoad() throws Exception {
jtulach@63
    72
        Mines m = new Mines();
jtulach@63
    73
        m.applyBindings();
jtulach@63
    74
    }
jtulach@63
    75
}