use of com.kyj.fx.voeditor.visual.component.pmd.PMDCheckComposite in project Gargoyle by callakrsos.
the class PMDCheckExam method start.
/* (non-Javadoc)
* @see javafx.application.Application#start(javafx.stage.Stage)
*/
@Override
public void start(Stage primaryStage) throws Exception {
// SwingNode swingContainerSplitPane = new SwingNode();
// SwingNode swingMenuBar = new SwingNode();
File file = new File("./src/main/java/com/kyj/fx/voeditor/visual/util/ValueUtil.java");
BorderPane root = new PMDCheckComposite(file);
// root.setBottom(new Label("javafx"));
// createSwingContent(swingContainerSplitPane, );
// createSwingContent(swingMenuBar, designerFx.getJMenuBar());
Scene value = new Scene(root, 1200, 800);
primaryStage.setScene(value);
primaryStage.show();
}
Aggregations