Examples of ITypeFinder


Examples of org.aspectj.org.eclipse.jdt.internal.compiler.lookup.ITypeFinder

  // AspectJ Extension
  protected void generateAttributes(ClassFile classFile) {
    // Have to ensure ITD inners are in the right place for the attribute to get generated
    if (binding != null && binding.typeFinder != null) {
      ITypeFinder typeFinder = binding.typeFinder;
      ReferenceBinding[] itdInners = typeFinder.getMemberTypes();
      if (itdInners != null) {
        for (int i=0;i<itdInners.length;i++) {
          classFile.recordInnerClasses(itdInners[i]);
        }
      }
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.