Examples of newSupertypeHierarchy()


Examples of org.eclipse.jdt.core.IType.newSupertypeHierarchy()

    IType javaType = JdtUtils.getJavaType(project, className);
   
    if (javaType == null)
      return false;
   
    ITypeHierarchy hierarchy = javaType.newSupertypeHierarchy(new NullProgressMonitor());
    IType[] interfaces = hierarchy.getAllSuperInterfaces(javaType);
   
    for (IType type : interfaces) {
      if (type.getElementName().equals("CustomConverter")) {
        return true;
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.