List of usage examples for javafx.scene.control ChoiceBox getConverter
public final StringConverter<T> getConverter()
From source file:Main.java
@Override public void start(Stage stage) { ChoiceBox choiceBox = new ChoiceBox(cursors); System.out.println(choiceBox.getConverter()); VBox box = new VBox(); box.getChildren().add(choiceBox);/*from w w w . ja v a2 s .co m*/ final Scene scene = new Scene(box, 300, 250); scene.setFill(null); stage.setScene(scene); stage.show(); }