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" ) );
}