Examples of StartupManager


Examples of com.intellij.openapi.startup.StartupManager

                                                               ToolWindowAnchor.RIGHT);
                tw.setIcon(Icons.MAVEN);
            }
        };

        final StartupManager mgr = StartupManager.getInstance(project);
        mgr.registerPostStartupActivity(regToolWinRunnable);
    }
View Full Code Here

Examples of com.intellij.openapi.startup.StartupManager

                refresh();
            }
        };

        final StartupManager startUpMgr = StartupManager.getInstance(project);
        startUpMgr.registerPostStartupActivity(runnable);
    }
View Full Code Here

Examples of com.intellij.openapi.startup.StartupManager

        return "ProjectOpenerListener";
    }


    public void projectOpened() {
        final StartupManager startupManager = StartupManager.getInstance( project );
        Runnable postInitialisationCallBack = new Runnable() {
            @Override
            public void run() {
                ConfigStateContainer.OBJECT$.notifyProjectOpened( project );
            }
        };

        startupManager.runWhenProjectIsInitialized( postInitialisationCallBack );
    }
View Full Code Here

Examples of de.iritgo.aktera.startup.StartupManager

  @Override
  public void shutDown()
  {
    try
    {
      StartupManager startupManager = (StartupManager) getContainer().getService(StartupManager.ROLE);

      startupManager.shutdown();
    }
    catch (Exception x)
    {
      getLogger().error("Unable to call the startup manager to shutdown all components", x);
    }
View Full Code Here
TOP
Copyright © 2018 www.massapi.com. 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.