Package com.intellij.ide.projectView

Examples of com.intellij.ide.projectView.ProjectViewNode


    Map<Object, Integer> elementToIndexMap = new LinkedHashMap<Object, Integer>();
    Object[] children = myTreeStructure.getChildElements(getTreeStructureElement(descriptor));
    int index = 0;
    for (Object child : children) {
      if (child instanceof ProjectViewNode) {
        final ProjectViewNode projectViewNode = (ProjectViewNode)child;
        updateNodeDescriptor(projectViewNode);
        if (projectViewNode.getValue() == null) continue;
      }
      elementToIndexMap.put(child, Integer.valueOf(index));
      index++;
    }
    return elementToIndexMap;
View Full Code Here

TOP

Related Classes of com.intellij.ide.projectView.ProjectViewNode

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.