Java tutorial
/* * w TrayRSS - simply notification of feed information (c) 2009-2013 TrayRSS Developement Team visit the project at * http://trayrss.nullpointer.at/ * * This program is free software: you can redistribute it and/or modify it under the terms of the GNU General Public * License as published by the Free Software Foundation, either version 3 of the License, or (at your option) any later * version. * * This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied * warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for more details. * * You should have received a copy of the GNU General Public License along with this program. If not, see * <http://www.gnu.org/licenses/>. */ package at.nullpointer.trayrss; import javax.inject.Inject; import lombok.Setter; import org.apache.log4j.Level; import org.apache.log4j.Logger; import org.springframework.context.support.ClassPathXmlApplicationContext; import org.springframework.stereotype.Component; import at.nullpointer.trayrss.configuration.ReferenceCollection; import at.nullpointer.trayrss.configuration.StartUp; import at.nullpointer.trayrss.gui.TrayRSSSplashScreen; /** * Startclass of TrayRSS * * @author Thomas Pummer * */ @Component public final class TrayRSS { /** * Time the splash is shown */ private static final int THREE_SECONDS = 3; /** * Logger */ private static final Logger LOG = Logger.getLogger(TrayRSS.class); /** * {@link TrayRSSSplashScreen} */ @Inject @Setter private TrayRSSSplashScreen splash; /** * {@link StartUp} */ @Inject @Setter private StartUp startUp; private TrayRSS() { } /** * Initialization of the Spring Context * * @param args */ public static void main(final String[] args) { final Package trayRssPackage = TrayRSS.class.getPackage(); ReferenceCollection.getInstance() .setTrayrssAppTitle("TrayRSS " + trayRssPackage.getImplementationVersion()); if (args.length != 0) { if (args[0].equals("-debug")) { Logger.getRootLogger().setLevel(Level.DEBUG); } else { System.out.println("You may start the program within the " // NOPMD + "debug mode by using -debug as parameter."); } } ReferenceCollection.getInstance().setContext(new ClassPathXmlApplicationContext("SpringBeans.xml")); TrayRSS trayRss = ReferenceCollection.getInstance().getContext().getBean(TrayRSS.class); trayRss.start(args); } /** * Startup of TrayRSS * * @param args */ public void start(final String[] args) { LOG.debug("Starting splashscreen"); LOG.debug("Initializing startup routine"); splash.endSplashAfterDisplaytime(THREE_SECONDS); startUp.start(); } }