Package org.aspectj.org.eclipse.jdt.internal.core.hierarchy

Examples of org.aspectj.org.eclipse.jdt.internal.core.hierarchy.HierarchyResolver


      accept((ICompilationUnit) focusType.getCompilationUnit(), null /*TODO no access restriction*/);
    }
  }

  // resolve focus type
  this.hierarchyResolver = new HierarchyResolver(this.lookupEnvironment, null/*hierarchy is not going to be computed*/);
  ReferenceBinding binding = this.hierarchyResolver.setFocusType(compoundName);
  return binding != null && binding.isValidBinding() && (binding.tagBits & TagBits.HierarchyHasProblems) == 0;
}
View Full Code Here

TOP

Related Classes of org.aspectj.org.eclipse.jdt.internal.core.hierarchy.HierarchyResolver

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.