Package org.freeplane.main.application

Examples of org.freeplane.main.application.SingleInstanceManager


      catch (final MalformedURLException e) {
      }
    }
    // initialize ApplicationController - SingleInstanceManager needs the configuration
    starter =  createStarter();
    final SingleInstanceManager singleInstanceManager = new SingleInstanceManager(starter);
    singleInstanceManager.start(getCallParameters());
    if (singleInstanceManager.isSlave()) {
      LogUtils.info("opened files in master - exiting now");
      System.exit(0);
    }
    else if (singleInstanceManager.isMasterPresent()) {
      starter.setDontLoadLastMaps();
    }
    loadPlugins(context);
    final Controller controller = starter.createController();
    starter.createModeControllers(controller);
View Full Code Here

TOP

Related Classes of org.freeplane.main.application.SingleInstanceManager

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.