import javafx.application.*; import javafx.scene.*; import javafx.scene.control.*; import javafx.scene.text.*; import javafx.scene.layout.*; import javafx.stage.*; import javafx.*; public class MotoreDiRicercaStart extends Application { @Override public void start(Stage stage) { stage.setTitle("Motore di ricerca"); MotoreDiRicercaPane vBox = new MotoreDiRicercaPane(); stage.setScene(new Scene(vBox)); stage.show(); } }