Package org.eclipse.jdt.internal.compiler.lookup

Examples of org.eclipse.jdt.internal.compiler.lookup.CaptureBinding


  int problemId = IProblem.RequiredNonNullButProvidedNull;
  boolean below18 = this.options.sourceLevel < ClassFileConstants.JDK1_8;
  if (!below18 && requiredType.isTypeVariable() && !requiredType.hasNullTypeAnnotations())
    problemId = IProblem.NullNotCompatibleToFreeTypeVariable;
  if (requiredType instanceof CaptureBinding) {
    CaptureBinding capture = (CaptureBinding) requiredType;
    if (capture.wildcard != null)
      requiredType = capture.wildcard;
  }
  String[] arguments;
  String[] argumentsShort;
View Full Code Here

TOP

Related Classes of org.eclipse.jdt.internal.compiler.lookup.CaptureBinding

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.