Package com.cburch.logisim.gui.start

Examples of com.cburch.logisim.gui.start.Startup


  public static final LogisimVersion VERSION = LogisimVersion.get(2, 7, 1);
  public static final String VERSION_NAME = VERSION.toString();
  public static final int COPYRIGHT_YEAR = 2011;

  public static void main(String[] args) {
    Startup startup = Startup.parseArgs(args);
    if (startup == null) {
      System.exit(0);
    } else {
      startup.run();
    }
  }
View Full Code Here


    /**
     * Entry point
     * @param args Command line arguments
     */
    public static void main(String[] args) {
        Startup startup = Startup.parseArgs(args);
        if (startup == null) {
            System.exit(0);
        } else {
            logger.info( "Starting Logisim" );
            startup.run();
        }
    }
View Full Code Here

TOP

Related Classes of com.cburch.logisim.gui.start.Startup

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.