Package com.intellij.codeInsight.folding

Examples of com.intellij.codeInsight.folding.CodeFoldingManager


            public void run() {
                for (Pair<Editor, Project> each : toUpdate) {
                    if (each.second == null || each.second.isDisposed()) {
                        continue;
                    }
                    final CodeFoldingManager foldingManager = CodeFoldingManager.getInstance(each.second);
                    if (foldingManager != null) {
                        foldingManager.buildInitialFoldings(each.first);
                    }
                }
                EditorOptionsPanel.reinitAllEditors();
            }
        }, ModalityState.NON_MODAL);
View Full Code Here

TOP

Related Classes of com.intellij.codeInsight.folding.CodeFoldingManager

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.