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

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


   
    // generate all methods
    classFile.addSpecialMethods();

    if (this.ignoreFurtherInvestigation){ // trigger problem type generation for code gen errors
      throw new AbortType(this.scope.referenceCompilationUnit().compilationResult, null);
    }

    // finalize the compiled type result
    classFile.addAttributes();
    this.scope.referenceCompilationUnit().compilationResult.record(this.binding.constantPoolName(), classFile);
View Full Code Here


   */
  public void abort(int abortLevel, CategorizedProblem problem) {

    switch (abortLevel) {
      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

TOP

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

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.