Package org.clarent.ivyidea.intellij.model

Examples of org.clarent.ivyidea.intellij.model.IntellijModuleWrapper


    protected void updateIntellijModel(final Module module, final List<ResolvedDependency> dependencies) {
        ApplicationManager.getApplication().invokeLater(new Runnable() {
            public void run() {
                ApplicationManager.getApplication().runWriteAction(new Runnable() {
                    public void run() {
                        final IntellijModuleWrapper moduleWrapper = IntellijModuleWrapper.forModule(module);
                        try {
                            moduleWrapper.updateDependencies(dependencies);
                        } finally {
                            moduleWrapper.close();
                        }
                    }
                });
            }
        });
View Full Code Here

TOP

Related Classes of org.clarent.ivyidea.intellij.model.IntellijModuleWrapper

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.