Package org.aspectj.org.eclipse.jdt.internal.compiler.ast

Examples of org.aspectj.org.eclipse.jdt.internal.compiler.ast.TypeReference.checkBounds()


  // Perform deferred bound checks for parameterized type references (only done after hierarchy is connected)
  public void  checkParameterizedTypeBounds() {
    TypeReference superclass = referenceContext.superclass;
    if (superclass != null)
      superclass.checkBounds(this);

    TypeReference[] superinterfaces = referenceContext.superInterfaces;
    if (superinterfaces != null)
      for (int i = 0, length = superinterfaces.length; i < length; i++)
        superinterfaces[i].checkBounds(this);
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.