mirror of
https://gitflic.ru/project/openide/openide.git
synced 2025-12-18 00:20:54 +07:00
18 lines
363 B
Plaintext
18 lines
363 B
Plaintext
#if (${PACKAGE_NAME} && ${PACKAGE_NAME} != "")package ${PACKAGE_NAME};#end
|
|
|
|
import javafx.application.Application;
|
|
import javafx.stage.Stage;
|
|
|
|
#parse("File Header.java")
|
|
public class ${NAME} extends Application {
|
|
|
|
public static void main(String[] args) {
|
|
launch(args);
|
|
}
|
|
|
|
@Override
|
|
public void start(Stage primaryStage) {
|
|
|
|
}
|
|
}
|