Examples of DartTypeHierarchyTreeStructure


Examples of com.jetbrains.lang.dart.ide.hierarchy.type.DartTypeHierarchyTreeStructure

          DartClassIndex.getItemsByName(className, project, GlobalSearchScope.projectScope(project));
        for (DartComponentName name : dartComponentNames) {
          DartClass dartClass = PsiTreeUtil.getParentOfType(name, DartClass.class);
          if (dartClass != null && dartClass.getName().equals(className)) {
            if (subtype) {
              return new DartTypeHierarchyTreeStructure(project, dartClass, HierarchyBrowserBaseEx.SCOPE_PROJECT);
            }
            else {
              return new DartSupertypesHierarchyTreeStructure(project, dartClass);
            }
          }
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.