import java.util.*;
import javafx.application.*;
import javafx.scene.*;
import javafx.scene.control.*;
import javafx.scene.layout.*;
import javafx.scene.text.*;
import javafx.stage.*;
public class T extends Application {
public void start(final Stage stage) {
VBox body = new VBox();
Scene scene = new Scene(body);
stage.setScene(scene);
stage.setWidth(200);
stage.setHeight(250);
Font font = Font.font("", FontWeight.NORMAL, 20);
CheckBox check;
for(int n=0; n<5; n++) {
body.getChildren().add(check = new CheckBox("あいう"));
check.setFont(font);
}
stage.setTitle(String.join(" ", getParameters().getRaw()));
stage.show();
}
public static void main(String[] args) {
//System.setProperty("com.sun.javafx.highContrastTheme", "WHITEONBLACK");
//Locale.setDefault(Locale.ENGLISH);
System.out.println("java.runtime.version: " + System.getProperty("java.runtime.version"));
System.out.println("javafx.runtime.version: " + System.getProperty("javafx.runtime.version"));
launch(args);
}
} 