DrawStars.java

See also

DrawStarsController.java
DrawStars.fxml


DrawStars.java

// DrawStars.java
import javafx.application.Application;
import javafx.fxml.FXMLLoader;
import javafx.scene.Parent;
import javafx.scene.Scene;
import javafx.stage.Stage;

public class DrawStars extends Application {
   @Override
   public void start(Stage stage) throws Exception {
      Parent root = FXMLLoader.load(getClass().getResource("DrawStars.fxml"));
      
      Scene scene = new Scene(root);
      stage.setTitle("Draw Stars");
      stage.setScene(scene);
      stage.show();
   }

   public static void main(String[] args) {
      launch(args);
   }
   
}


Maintained by John Loomis, updated Sat Feb 10 11:01:56 2018