The Life Cycle of a JavaFX Application - Java JavaFX

Java examples for JavaFX:Introduction

Description

The Life Cycle of a JavaFX Application

Demo Code

import javafx.application.Application;
import javafx.application.Platform;
import javafx.scene.Group;
import javafx.scene.Scene;
import javafx.scene.control.Button;
import javafx.stage.Stage;

public class Main extends Application {
  public Main() {
    String name = Thread.currentThread().getName();
    System.out.println("FXLifeCycleApp() constructor: " + name);
  }/*from www  .j  av  a 2s .  c o m*/

  public static void main(String[] args) {
    Application.launch(args);
  }

  @Override
  public void init() {
    String name = Thread.currentThread().getName();
    System.out.println("init() method: " + name);
  }

  @Override
  public void start(Stage stage) {
    String name = Thread.currentThread().getName();
    System.out.println("start() method: " + name);

    Button exitBtn = new Button("Exit");
    exitBtn.setOnAction(e -> Platform.exit());

    Scene scene = new Scene(new Group(exitBtn), 300, 100);
    stage.setScene(scene);
    stage.setTitle("JavaFX Application Life Cycle");
    stage.show();
  }

  @Override
  public void stop() {
    String name = Thread.currentThread().getName();
    System.out.println("stop() method: " + name);
  }
}

Related Tutorials