Package org.eclipse.jdt.internal.core

Examples of org.eclipse.jdt.internal.core.JavaElementInfo


  public IType getType(String typeName) {
    return new AssistSourceType(this, typeName, this.bindingCache, this.infoCache);
  }

  public boolean hasChildren() throws JavaModelException {
    JavaElementInfo info = (JavaElementInfo)this.infoCache.get(this);
    return info.getChildren().length > 0;
  }
View Full Code Here


  public IType getType(String typeName) {
    return new AssistSourceType(this, typeName, this.bindingCache, this.infoCache);
  }

  public boolean hasChildren() throws JavaModelException {
    JavaElementInfo info = (JavaElementInfo)this.infoCache.get(this);
    return info.getChildren().length > 0;
  }
View Full Code Here

TOP

Related Classes of org.eclipse.jdt.internal.core.JavaElementInfo

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.