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);
}
Aggregations