-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathApp.java
More file actions
25 lines (22 loc) · 712 Bytes
/
App.java
File metadata and controls
25 lines (22 loc) · 712 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
package org.example;
import javafx.application.Application;
/**
* Application entry point for the myPod application.
*
* <p>This class contains the {@code main} method and is responsible for
* bootstrapping the JavaFX runtime. It delegates control to the
* {@link MyPod} JavaFX {@link Application} implementation.</p>
*
* <p>No application logic is handled here; this class exists solely to
* provide a clean and explicit startup entry point.</p>
*/
public class App {
/**
* Launches the JavaFX application.
*
* @param args command-line arguments passed to the application
*/
public static void main(String[] args) {
Application.launch(MyPod.class, args);
}
}