Package javafx.scene.web

Examples of javafx.scene.web.WebEngine


     * {@inheritDoc}
     */
    @Override
    public void start(Stage stage) throws Exception {
        WebView view = new WebView();
        WebEngine engine = view.getEngine();
        // engine.load("http://modernizr.github.io/Modernizr/test/index.html");
        engine.load("http://localhost:10021/index.html");

        stage.setScene(new Scene(view));
        stage.show();
    }
View Full Code Here

TOP

Related Classes of javafx.scene.web.WebEngine

Copyright © 2018 www.massapicom. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.