I have long titles for tab pane tabs. Please, help me to make tabs titles to contain more than one line.
public class Main extends Application {
@Override
public void start(Stage primaryStage) throws Exception{
Stage stage = new Stage();
Tab tab1 = new Tab("tab1 tab1 tab1 tab1 tab1 ");
Tab tab2 = new Tab("tab2 tab2 tab2 tab2 tab2 ");
Tab tab3 = new Tab("tab3 tab3 tab3 tab3 tab3 ");
TabPane tabPane = new TabPane(tab1, tab2, tab3);
tabPane.setMinHeight(80);
tabPane.setMaxWidth(230);
HBox hbox = new HBox(10);
hbox.getChildren().addAll(new Label("Tabs ==> "), tabPane);
Scene choosePlayer = new Scene(hbox, 300, 400);
stage.setScene(choosePlayer);
stage.show();
}
public static void main(String[] args) {
launch(args);
}
}