Example usage for javafx.scene.control CheckBox isAllowIndeterminate

List of usage examples for javafx.scene.control CheckBox isAllowIndeterminate

Introduction

In this page you can find the example usage for javafx.scene.control CheckBox isAllowIndeterminate.

Prototype

public final boolean isAllowIndeterminate() 

Source Link

Usage

From source file:Main.java

@Override
public void start(Stage stage) {
    Scene scene = new Scene(new Group());
    stage.setWidth(300);/*from   ww w .j  av a 2 s .c  o  m*/
    stage.setHeight(150);
    final CheckBox cb = new CheckBox();
    cb.setText("checkBox");
    cb.setAllowIndeterminate(true);

    cb.selectedProperty().addListener(new ChangeListener<Boolean>() {
        public void changed(ObservableValue<? extends Boolean> ov, Boolean old_val, Boolean new_val) {
            System.out.println(cb.isSelected());
            System.out.println(cb.isAllowIndeterminate());
        }
    });
    ((Group) scene.getRoot()).getChildren().add(cb);

    stage.setScene(scene);
    stage.show();
}