Uploaded image for project: 'JDK'
  1. JDK
  2. JDK-8115006

NPE in "AWT-AppKit"

XMLWordPrintable

    • Icon: Bug Bug
    • Resolution: Cannot Reproduce
    • Icon: P4 P4
    • None
    • fx2.1
    • javafx
    • Mac/j2d/JDK6

      To reproduce try to resize any simple application by dragging corner.

      package main;

      import javafx.application.Application;
      import javafx.scene.Scene;
      import javafx.scene.layout.VBox;
      import javafx.scene.text.Text;
      import javafx.stage.Stage;

      public class Main extends Application {

          VBox root;

          @Override
          public void start(Stage stage) {
              stage.setTitle(this.getClass().getSimpleName());
              stage.setScene(new ToolBarAppScene());
              stage.show();
          }

          public static void main(String[] args) {
              launch(Main.class, args);
          }

          public class ToolBarAppScene extends Scene {
              public ToolBarAppScene() {
                  super(root = new VBox());

                  Text label = new Text("Label");

                  root.getChildren().add(label);
              }
          }
      }

            kcr Kevin Rushforth
            ogb Oleg Barbashov (Inactive)
            Votes:
            0 Vote for this issue
            Watchers:
            1 Start watching this issue

              Created:
              Updated:
              Resolved:
              Imported: