Skip to content

Instantly share code, notes, and snippets.

@npatta01
Created April 23, 2013 07:03
Show Gist options
  • Save npatta01/5441401 to your computer and use it in GitHub Desktop.
Save npatta01/5441401 to your computer and use it in GitHub Desktop.
Default Application class created from JavaFX FXML template project
public class JavaFXApplication extends Application {
@Override
public void start(Stage stage) throws Exception {
Parent root = FXMLLoader.load(getClass().getResource("Sample.fxml"));
Scene scene = new Scene(root);
stage.setScene(scene);
stage.show();
}
/**
* The main() method is ignored in correctly deployed JavaFX application.
* main() serves only as fallback in case the application can not be
* launched through deployment artifacts, e.g., in IDEs with limited FX
* support. NetBeans ignores main().
*
* @param args the command line arguments
*/
public static void main(String[] args) {
launch(args);
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment