Package cuchaz.enigma.gui

Examples of cuchaz.enigma.gui.Gui


public class Main
{
  public static void main( String[] args )
  throws Exception
  {
    Gui gui = new Gui();
   
    // parse command-line args
    if( args.length >= 1 )
    {
      gui.getController().openJar( getFile( args[0] ) );
    }
    if( args.length >= 2 )
    {
      gui.getController().openMappings( getFile( args[1] ) );
    }
   
    // DEBUG
    //gui.getController().openDeclaration( new ClassEntry( "none/ces" ) );
  }
View Full Code Here

TOP

Related Classes of cuchaz.enigma.gui.Gui

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.