Package view

Examples of view.HelpView


    public static void main(String[] args)  {
        logger.info("ttt-game started");
        if (args.length == 0) {
            logger.info("args.length == 0 => showing help view");
            new HelpView().update();
        } else {
            logger.info("starting program");
            startProgram(args);
        }
        logger.info("ttt-game finished");
View Full Code Here

TOP

Related Classes of view.HelpView

Copyright © 2018 www.massapicom. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.