/** * Copyright 2015 GitFx * * Licensed under the Apache License, Version 2.0 (the "License"); you may not * use this file except in compliance with the License. You may obtain a copy of * the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, WITHOUT * WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the * License for the specific language governing permissions and limitations under * the License. */ package io.github.gitfx; import javafx.application.Application; // import static javafx.application.Application.launch; removing this redundant import as GitFxApp itself is Application(subclass), launch can be used without importing import javafx.fxml.FXMLLoader; import javafx.scene.Parent; import javafx.scene.Scene; import javafx.stage.Stage; import static io.github.gitfx.util.WorkbenchUtil.initializeWorkbench; import io.github.gitfx.controller.GitFxController; // import org.slf4j.Logger; // import org.slf4j.LoggerFactory; import com.jcabi.aspects.Loggable; @Loggable public class GitFxApp extends Application { // Logger logger = LoggerFactory.getLogger(GitFxApp.class.getName()); // Removed as adding new AOP Lines private Stage stage; @Override public void start(Stage stage) throws Exception { //logger.debug("Application Starting..."); FXMLLoader loader = new FXMLLoader(getClass().getResource("/fxml/GitFx.fxml")); Parent root = loader.load(); this.stage = stage; Scene scene = new Scene(root); scene.getStylesheets().add("/styles/Styles.css"); setUserAgentStylesheet(STYLESHEET_MODENA); stage.setResizable(true); stage.setTitle("GitFX - Alpha"); //Give controller access to GitFxApp GitFxController controller = loader.getController(); controller.setMainApp(this); initializeWorkbench("user.home"); stage.setScene(scene); stage.show(); } /** * Returns the main stage. * * @return */ public Stage getPrimaryStage() { return stage; } /** * The main() method is ignored in correctly deployed JavaFX application. * main() serves only as fallback in case the application can not be * launched through deployment artifacts, e.g., in IDEs with limited FX * support. NetBeans ignores main(). * * @param args the command line arguments */ public static void main(String[] args) { launch(args); } }