I created a scene in class1, then i created a scene2 in class2. How to switch between them?
public class class1 extends Application{
Stage window1;
BorderPane layout1;
Scene scene1;
public static void main(String[] args) {
    launch(args);
}
@Override
public void start(Stage primaryStage) throws Exception {
    window1 = primaryStage;
    window.setTitle("Stage 1");
    // And here is a button which switchs between scenes or stages,
    //i dont know what is better.So:
button.setOnAction(e -> ?????????)
    scene1 = new Scene(layout1, 800,600);
    window1.show();
}
}
And here is the second class in which i have another scene.
public class class2 extends Application{
Stage window2;
BorderPane layout2;
Scene scene2;
public static void main(String[] args) {
    launch(args);
}
@Override
public void start(Stage primaryStage) throws Exception {
    window2 = primaryStage;
    window2.setTitle("Stage 2");
    scene2 = new Scene(layout, 800,600);
    window2.show();
}
}
 
     
     
    