Tooltip(java.lang.String text) constructor from Tooltip has the following syntax.
public Tooltip(java.lang.String text)
In the following code shows how to use Tooltip.Tooltip(java.lang.String text) constructor.
/* w w w.ja v a 2s . c o m*/ import javafx.application.Application; import javafx.scene.Group; import javafx.scene.Scene; import javafx.scene.control.Button; import javafx.scene.control.Tooltip; import javafx.stage.Stage; public class Main extends Application { public static void main(String[] args) { launch(args); } @Override public void start(Stage stage) { Scene scene = new Scene(new Group()); stage.setTitle("Tooltip Sample"); stage.setWidth(300); stage.setHeight(150); Button button = new Button("Hover Over Me"); button.setTooltip(new Tooltip("Tooltip for Button")); ((Group) scene.getRoot()).getChildren().add(button); stage.setScene(scene); stage.show(); } }