Package com.intellij.openapi.startup

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


                refresh();
            }
        };

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

        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

TOP

Related Classes of com.intellij.openapi.startup.StartupManager

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.