use of com.kyj.fx.voeditor.visual.component.bci.view.JavaProcessMonitor in project Gargoyle by callakrsos.
the class ProcessMonitorExample method start.
@Override
public void start(Stage primaryStage) throws Exception {
javaProcessMonitor = new JavaProcessMonitor();
Scene value = new Scene(javaProcessMonitor.getParent(), 800, 600);
primaryStage.setScene(value);
primaryStage.show();
}
Aggregations