Package org.eclim.plugin.jdt.util

Examples of org.eclim.plugin.jdt.util.TypeInfo


  private List<HierarchyNode> createChildNodes(IType type)
    throws Exception
  {
    ArrayList<HierarchyNode> nodes = new ArrayList<HierarchyNode>();

    TypeInfo parentClassInfo = TypeUtils.getSuperClass(type);
    String jlo = "java.lang.Object";
    if (parentClassInfo != null){
      IType parentClass = parentClassInfo.getType();
      if(!jlo.equals(JavaUtils.getFullyQualifiedName(parentClass))){
        nodes.add(new HierarchyNode(parentClass, createChildNodes(parentClass)));
      }
    }
View Full Code Here


   * @param children The children for this node.
   */
  public HierarchyNode(IType type, List<HierarchyNode> children)
    throws Exception
  {
    this.name = TypeUtils.getTypeSignature(new TypeInfo(type, null, null));
    this.qualified = JavaUtils.getFullyQualifiedName(type);
    this.children = children;
  }
View Full Code Here

TOP

Related Classes of org.eclim.plugin.jdt.util.TypeInfo

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.