Package com.mucommander.ui.main.frame

Examples of com.mucommander.ui.main.frame.CommandLineMainFrameBuilder


            // Creates the initial main frame using any initial path specified by the command line.
            printStartupMessage("Initializing window...");
            String[] folders = new String[args.length - i];
            System.arraycopy(args, i, folders, 0, folders.length);
            WindowManager.createNewMainFrame(new CommandLineMainFrameBuilder(folders));

            // If no initial path was specified, start a default main window.
            if(WindowManager.getCurrentMainFrame() == null)
                WindowManager.createNewMainFrame(new DefaultMainFramesBuilder());
View Full Code Here

TOP

Related Classes of com.mucommander.ui.main.frame.CommandLineMainFrameBuilder

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.