Uses of Class
org.eclipse.jdt.core.compiler.CategorizedProblem

Packages that use CategorizedProblem
org.eclipse.jdt.internal.compiler   
org.eclipse.jdt.internal.compiler.ast   
org.eclipse.jdt.internal.compiler.batch   
org.eclipse.jdt.internal.compiler.impl   
org.eclipse.jdt.internal.compiler.problem   
 

Uses of CategorizedProblem in org.eclipse.jdt.internal.compiler
 

Fields in org.eclipse.jdt.internal.compiler declared as CategorizedProblem
 CategorizedProblem[] CompilationResult.problems
           
 CategorizedProblem[] CompilationResult.tasks
           
 

Methods in org.eclipse.jdt.internal.compiler that return CategorizedProblem
 CategorizedProblem IProblemFactory.createProblem(char[] originatingFileName, int problemId, java.lang.String[] problemArguments, java.lang.String[] messageArguments, int severity, int startPosition, int endPosition, int lineNumber)
           
 CategorizedProblem[] CompilationResult.getAllProblems()
           
 CategorizedProblem[] CompilationResult.getErrors()
          Answer the errors encountered during compilation.
 CategorizedProblem[] CompilationResult.getProblems()
          Answer the problems (errors and warnings) encountered during compilation.
 CategorizedProblem[] CompilationResult.getTasks()
          Answer the tasks (TO-DO, ...) encountered during compilation.
 

Methods in org.eclipse.jdt.internal.compiler with parameters of type CategorizedProblem
 void ClassFile.addProblemClinit(CategorizedProblem[] problems)
          INTERNAL USE-ONLY Generate the byte for a problem clinit method info that correspond to a boggus method.
 void ClassFile.addProblemConstructor(AbstractMethodDeclaration method, MethodBinding methodBinding, CategorizedProblem[] problems)
          INTERNAL USE-ONLY Generate the byte for a problem method info that correspond to a boggus constructor.
 void ClassFile.addProblemConstructor(AbstractMethodDeclaration method, MethodBinding methodBinding, CategorizedProblem[] problems, int savedOffset)
          INTERNAL USE-ONLY Generate the byte for a problem method info that correspond to a boggus constructor.
 void ClassFile.addProblemMethod(AbstractMethodDeclaration method, MethodBinding methodBinding, CategorizedProblem[] problems)
          INTERNAL USE-ONLY Generate the byte for a problem method info that correspond to a boggus method.
 void ClassFile.addProblemMethod(AbstractMethodDeclaration method, MethodBinding methodBinding, CategorizedProblem[] problems, int savedOffset)
          INTERNAL USE-ONLY Generate the byte for a problem method info that correspond to a boggus method.
 void CompilationResult.record(CategorizedProblem newProblem, ReferenceContext referenceContext)
           
 

Uses of CategorizedProblem in org.eclipse.jdt.internal.compiler.ast
 

Methods in org.eclipse.jdt.internal.compiler.ast with parameters of type CategorizedProblem
 void TypeDeclaration.abort(int abortLevel, CategorizedProblem problem)
           
 void CompilationUnitDeclaration.abort(int abortLevel, CategorizedProblem problem)
           
 void AbstractMethodDeclaration.abort(int abortLevel, CategorizedProblem problem)
           
 

Uses of CategorizedProblem in org.eclipse.jdt.internal.compiler.batch
 

Methods in org.eclipse.jdt.internal.compiler.batch with parameters of type CategorizedProblem
 int Main.Logger.logProblems(CategorizedProblem[] problems, char[] unitSource, Main currentMain)
           
 

Uses of CategorizedProblem in org.eclipse.jdt.internal.compiler.impl
 

Methods in org.eclipse.jdt.internal.compiler.impl with parameters of type CategorizedProblem
 void ReferenceContext.abort(int abortLevel, CategorizedProblem problem)
           
 

Uses of CategorizedProblem in org.eclipse.jdt.internal.compiler.problem
 

Subclasses of CategorizedProblem in org.eclipse.jdt.internal.compiler.problem
 class DefaultProblem
           
 

Fields in org.eclipse.jdt.internal.compiler.problem declared as CategorizedProblem
 CategorizedProblem AbortCompilation.problem
           
 

Methods in org.eclipse.jdt.internal.compiler.problem that return CategorizedProblem
 CategorizedProblem ProblemHandler.createProblem(char[] fileName, int problemId, java.lang.String[] problemArguments, java.lang.String[] messageArguments, int severity, int problemStartPosition, int problemEndPosition, int lineNumber)
           
 CategorizedProblem DefaultProblemFactory.createProblem(char[] originatingFileName, int problemId, java.lang.String[] problemArguments, java.lang.String[] messageArguments, int severity, int startPosition, int endPosition, int lineNumber)
          Answer a new IProblem created according to the parameters value originatingFileName the name of the file name from which the problem is originated problemId the problem id problemArguments the fully qualified arguments recorded inside the problem messageArguments the arguments needed to set the error message (shorter names than problemArguments ones) severity the severity of the problem startPosition the starting position of the problem endPosition the end position of the problem lineNumber the line on which the problem occured
 

Methods in org.eclipse.jdt.internal.compiler.problem with parameters of type CategorizedProblem
 java.lang.String DefaultProblemFactory.localizedMessage(CategorizedProblem problem)
           
 void ProblemHandler.record(CategorizedProblem problem, CompilationResult unitResult, ReferenceContext referenceContext)
           
 

Constructors in org.eclipse.jdt.internal.compiler.problem with parameters of type CategorizedProblem
AbortCompilation(CompilationResult compilationResult, CategorizedProblem problem)
           
AbortCompilationUnit(CompilationResult compilationResult, CategorizedProblem problem)
           
AbortMethod(CompilationResult compilationResult, CategorizedProblem problem)
           
AbortType(CompilationResult compilationResult, CategorizedProblem problem)