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

Examples of org.aspectj.org.eclipse.jdt.internal.compiler.problem.AbortCompilationUnit


  // otherwise retrieve it
  try {
    return Util.getFileCharContent(new File(new String(this.fileName)), this.encoding);
  } catch (IOException e) {
    this.contents = CharOperation.NO_CHAR; // assume no source if asked again
    throw new AbortCompilationUnit(null, e, this.encoding);
  }
}
View Full Code Here


      case AbortType :
        throw new AbortType(this.compilationResult, problem);
      case AbortMethod :
        throw new AbortMethod(this.compilationResult, problem);
      default :
        throw new AbortCompilationUnit(this.compilationResult, problem);
    }
  }
View Full Code Here

    if (binding == null) {
      // if binding is null, we failed to find a type used in the method params, this error
      // has already been reported.
      this.ignoreFurtherInvestigation = true;
      // return null;
      throw new AbortCompilationUnit(compilationResult, null);
    }

    if (isTargetAnnotation(classScope, "method"))
      return null; // Error message output in isTargetAnnotation
    if (isTargetEnum(classScope, "method"))
View Full Code Here

    if (binding == null) {
      // if binding is null, we failed to find a type used in the method params, this error
      // has already been reported.
      this.ignoreFurtherInvestigation = true;
      //return null;
      throw new AbortCompilationUnit(compilationResult,null);
    }

    if (isTargetAnnotation(classScope,"method")) return null; // Error message output in isTargetAnnotation
    if (isTargetEnum(classScope,"method")) return null; // Error message output in isTargetEnum
   
View Full Code Here

TOP

Related Classes of org.aspectj.org.eclipse.jdt.internal.compiler.problem.AbortCompilationUnit

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.