minesweeper/src/main/java/org/apidesign/demo/minesweeper/Main.java
author Jaroslav Tulach <jtulach@netbeans.org>
Mon, 08 Sep 2014 10:13:14 +0200
branchnbrwsr
changeset 204 023918566428
parent 202 2f2a29ad26ef
child 205 767b3666a982
permissions -rw-r--r--
About to release new version for NetBeans
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
jaroslav@202
    26
import java.util.Locale;
jtulach@63
    27
import net.java.html.boot.BrowserBuilder;
jtulach@112
    28
import org.netbeans.api.nbrwsr.OpenHTMLRegistration;
jtulach@112
    29
import org.openide.awt.ActionID;
jtulach@112
    30
import org.openide.awt.ActionReference;
jtulach@112
    31
import org.openide.awt.ActionReferences;
jtulach@63
    32
jtulach@63
    33
jtulach@63
    34
/** Bootstrap and initialization. */
jtulach@63
    35
public final class Main {
jtulach@63
    36
    private Main() {
jtulach@63
    37
    }
jtulach@90
    38
jtulach@63
    39
    /** Launches the browser */
jaroslav@140
    40
    public static void main(String... args) throws Exception {        
jtulach@125
    41
        BrowserBuilder.newBrowser().
jtulach@63
    42
            loadPage("pages/index.html").
jtulach@204
    43
//            locale(Locale.getDefault()).
jtulach@90
    44
            loadClass(MinesModel.class).
jtulach@90
    45
            invoke("main", args).
jtulach@63
    46
            showAndWait();
jtulach@63
    47
        System.exit(0);
jtulach@63
    48
    }
jtulach@63
    49
    
jtulach@112
    50
    //
jtulach@112
    51
    // the following annotations generate registration for NetBeans,
jtulach@112
    52
    // they are harmless in other packaging schemes
jtulach@112
    53
    //
jtulach@112
    54
    
jtulach@112
    55
    @ActionID(
jtulach@112
    56
            category = "Games",
jtulach@112
    57
            id = "org.apidesign.demo.minesweeper"
jtulach@112
    58
    )
jtulach@112
    59
    @OpenHTMLRegistration(
jtulach@112
    60
        url="index.html",
jtulach@119
    61
        displayName = "Play Minesweeper!",
jtulach@119
    62
        iconBase = "org/apidesign/demo/minesweeper/ko4j.png"
jtulach@112
    63
    )
jtulach@112
    64
    @ActionReferences({
jtulach@112
    65
        @ActionReference(path = "Menu/Window"),
jtulach@120
    66
        @ActionReference(path = "Toolbars/Games")
jtulach@112
    67
    })
jtulach@112
    68
    //
jtulach@112
    69
    // end of NetBeans actions registration
jtulach@112
    70
    //
jtulach@112
    71
    
jtulach@63
    72
    /** Called when page is ready */
jtulach@112
    73
    public static void onPageLoad() throws Exception {
jtulach@63
    74
        Mines m = new Mines();
jtulach@63
    75
        m.applyBindings();
jtulach@63
    76
    }
jtulach@63
    77
}