Search in sources :

Example 1 with MainView

use of jgnash.uifx.views.main.MainView in project jgnash by ccavanaugh.

the class jGnashFx method start.

@Override
public void start(final Stage primaryStage) throws Exception {
    final MainView mainView = new MainView();
    mainView.start(primaryStage, dataFile, password, host, port);
    // clear the password to protect against malicious code
    Arrays.fill(password, (char) 0);
}
Also used : MainView(jgnash.uifx.views.main.MainView)

Aggregations

MainView (jgnash.uifx.views.main.MainView)1