|
||||||||||
| PREV NEXT | FRAMES NO FRAMES | |||||||||
| Uses of CategorizedProblem in org.eclipse.jdt.core.compiler |
|---|
| Methods in org.eclipse.jdt.core.compiler that return CategorizedProblem | |
|---|---|
CategorizedProblem[] |
ReconcileContext.getProblems(java.lang.String markerType)
Returns the problems to be reported to the problem requestor of the reconcile operation for the given marker type. |
| Methods in org.eclipse.jdt.core.compiler with parameters of type CategorizedProblem | |
|---|---|
void |
ReconcileContext.putProblems(java.lang.String markerType,
CategorizedProblem[] problems)
Sets the problems to be reported to the problem requestor of the reconcile operation for the given marker type. |
void |
BuildContext.recordNewProblems(CategorizedProblem[] newProblems)
Record new problems to report against this compilationUnit. |
| Uses of CategorizedProblem in org.eclipse.jdt.internal.codeassist |
|---|
| Methods in org.eclipse.jdt.internal.codeassist that return CategorizedProblem | |
|---|---|
CategorizedProblem |
CompletionEngine.CompletionProblemFactory.createProblem(char[] originatingFileName,
int problemId,
java.lang.String[] problemArguments,
int elaborationId,
java.lang.String[] messageArguments,
int severity,
int start,
int end,
int lineNumber,
int columnNumber)
|
CategorizedProblem |
CompletionEngine.CompletionProblemFactory.createProblem(char[] originatingFileName,
int problemId,
java.lang.String[] problemArguments,
java.lang.String[] messageArguments,
int severity,
int start,
int end,
int lineNumber,
int columnNumber)
|
| Methods in org.eclipse.jdt.internal.codeassist with parameters of type CategorizedProblem | |
|---|---|
void |
ISelectionRequestor.acceptError(CategorizedProblem error)
Code assist notification of a compilation error detected during selection. |
protected void |
CompletionEngine.printDebug(CategorizedProblem error)
|
| 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,
int elaborationId,
java.lang.String[] messageArguments,
int severity,
int startPosition,
int endPosition,
int lineNumber,
int columnNumber)
Answer a new IProblem created according to the parameters values. |
CategorizedProblem |
IProblemFactory.createProblem(char[] originatingFileName,
int problemId,
java.lang.String[] problemArguments,
java.lang.String[] messageArguments,
int severity,
int startPosition,
int endPosition,
int lineNumber,
int columnNumber)
|
CategorizedProblem[] |
CompilationResult.getAllProblems()
|
CategorizedProblem[] |
CompilationResult.getCUProblems()
Same as getProblems() but don't answer problems that actually concern the enclosing package. |
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 |
IDocumentElementRequestor.acceptProblem(CategorizedProblem problem)
|
void |
ISourceElementRequestor.acceptProblem(CategorizedProblem problem)
|
void |
SourceElementRequestorAdapter.acceptProblem(CategorizedProblem problem)
|
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)
|
void |
CompilationResult.record(CategorizedProblem newProblem,
ReferenceContext referenceContext,
boolean mandatoryError)
|
void |
CompilationResult.removeProblem(CategorizedProblem problem)
|
| 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 |
AbstractMethodDeclaration.abort(int abortLevel,
CategorizedProblem problem)
|
void |
CompilationUnitDeclaration.abort(int abortLevel,
CategorizedProblem problem)
|
boolean |
CompilationUnitDeclaration.isSuppressed(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 | |
|---|---|
void |
Main.addExtraProblems(CategorizedProblem problem)
|
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 |
DefaultProblemFactory.createProblem(char[] originatingFileName,
int problemId,
java.lang.String[] problemArguments,
int elaborationId,
java.lang.String[] messageArguments,
int severity,
int startPosition,
int endPosition,
int lineNumber,
int columnNumber)
|
CategorizedProblem |
ProblemHandler.createProblem(char[] fileName,
int problemId,
java.lang.String[] problemArguments,
int elaborationId,
java.lang.String[] messageArguments,
int severity,
int problemStartPosition,
int problemEndPosition,
int lineNumber,
int columnNumber)
|
CategorizedProblem |
DefaultProblemFactory.createProblem(char[] originatingFileName,
int problemId,
java.lang.String[] problemArguments,
java.lang.String[] messageArguments,
int severity,
int startPosition,
int endPosition,
int lineNumber,
int columnNumber)
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 |
CategorizedProblem |
ProblemHandler.createProblem(char[] fileName,
int problemId,
java.lang.String[] problemArguments,
java.lang.String[] messageArguments,
int severity,
int problemStartPosition,
int problemEndPosition,
int lineNumber,
int columnNumber)
|
| 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,
boolean optionalError)
|
| 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)
|
|
| Uses of CategorizedProblem in org.eclipse.jdt.internal.core |
|---|
| Methods in org.eclipse.jdt.internal.core that return CategorizedProblem | |
|---|---|
CategorizedProblem |
CancelableProblemFactory.createProblem(char[] originatingFileName,
int problemId,
java.lang.String[] problemArguments,
int elaborationId,
java.lang.String[] messageArguments,
int severity,
int startPosition,
int endPosition,
int lineNumber,
int columnNumber)
|
CategorizedProblem |
CancelableProblemFactory.createProblem(char[] originatingFileName,
int problemId,
java.lang.String[] problemArguments,
java.lang.String[] messageArguments,
int severity,
int startPosition,
int endPosition,
int lineNumber,
int columnNumber)
|
| Methods in org.eclipse.jdt.internal.core with parameters of type CategorizedProblem | |
|---|---|
void |
SelectionRequestor.acceptError(CategorizedProblem error)
|
void |
SourceMapper.acceptProblem(CategorizedProblem problem)
|
void |
CompilationUnitStructureRequestor.acceptProblem(CategorizedProblem problem)
|
| Uses of CategorizedProblem in org.eclipse.jdt.internal.core.builder |
|---|
| Fields in org.eclipse.jdt.internal.core.builder declared as CategorizedProblem | |
|---|---|
protected CategorizedProblem[] |
CompilationParticipantResult.problems
|
| Methods in org.eclipse.jdt.internal.core.builder with parameters of type CategorizedProblem | |
|---|---|
void |
CompilationParticipantResult.recordNewProblems(CategorizedProblem[] newProblems)
Record new problems to report against this compilationUnit. |
protected void |
AbstractImageBuilder.storeProblemsFor(SourceFile sourceFile,
CategorizedProblem[] problems)
Creates a marker from each problem and adds it to the resource. |
protected void |
BatchImageBuilder.storeProblemsFor(SourceFile sourceFile,
CategorizedProblem[] problems)
|
protected void |
AbstractImageBuilder.storeTasksFor(SourceFile sourceFile,
CategorizedProblem[] tasks)
|
protected void |
BuildNotifier.updateProblemCounts(CategorizedProblem[] newProblems)
|
protected void |
BuildNotifier.updateProblemCounts(IMarker[] oldProblems,
CategorizedProblem[] newProblems)
Update the problem counts from one compilation result given the old and new problems, either of which may be null. |
| Uses of CategorizedProblem in org.eclipse.jdt.internal.core.eval |
|---|
| Methods in org.eclipse.jdt.internal.core.eval with parameters of type CategorizedProblem | |
|---|---|
void |
RequestorWrapper.acceptProblem(CategorizedProblem problem,
char[] fragmentSource,
int fragmentKind)
|
| Uses of CategorizedProblem in org.eclipse.jdt.internal.core.jdom |
|---|
| Methods in org.eclipse.jdt.internal.core.jdom with parameters of type CategorizedProblem | |
|---|---|
void |
SimpleDOMBuilder.acceptProblem(CategorizedProblem problem)
Deprecated. Does nothing. |
void |
DOMBuilder.acceptProblem(CategorizedProblem problem)
Deprecated. Sets the abort flag to true. |
| Uses of CategorizedProblem in org.eclipse.jdt.internal.core.search.indexing |
|---|
| Methods in org.eclipse.jdt.internal.core.search.indexing with parameters of type CategorizedProblem | |
|---|---|
void |
SourceIndexerRequestor.acceptProblem(CategorizedProblem problem)
|
| Uses of CategorizedProblem in org.eclipse.jdt.internal.core.util |
|---|
| Fields in org.eclipse.jdt.internal.core.util declared as CategorizedProblem | |
|---|---|
CategorizedProblem[] |
RecordedParsingInformation.problems
|
| Constructors in org.eclipse.jdt.internal.core.util with parameters of type CategorizedProblem | |
|---|---|
RecordedParsingInformation(CategorizedProblem[] problems,
int[] lineEnds,
int[][] commentPositions)
|
|
| Uses of CategorizedProblem in org.eclipse.jdt.internal.eval |
|---|
| Methods in org.eclipse.jdt.internal.eval that return CategorizedProblem | |
|---|---|
CategorizedProblem[] |
EvaluationResult.getProblems()
Returns an array of problems (errors and warnings) encountered during the compilation of a code snippet or a global variable definition, or during the analysis of a package name or an import. |
| Methods in org.eclipse.jdt.internal.eval with parameters of type CategorizedProblem | |
|---|---|
void |
IRequestor.acceptProblem(CategorizedProblem problem,
char[] fragmentSource,
int fragmentKind)
|
protected void |
VariablesEvaluator.addEvaluationResultForCompilationProblem(java.util.Map resultsByIDs,
CategorizedProblem problem,
char[] cuSource)
|
protected abstract void |
Evaluator.addEvaluationResultForCompilationProblem(java.util.Map resultsByIDs,
CategorizedProblem problem,
char[] cuSource)
Adds the given problem to the corresponding evaluation result in the given table. |
protected void |
CodeSnippetEvaluator.addEvaluationResultForCompilationProblem(java.util.Map resultsByIDs,
CategorizedProblem problem,
char[] cuSource)
|
| Constructors in org.eclipse.jdt.internal.eval with parameters of type CategorizedProblem | |
|---|---|
EvaluationResult(char[] evaluationID,
int evaluationType,
CategorizedProblem[] problems)
|
|
|
||||||||||
| PREV NEXT | FRAMES NO FRAMES | |||||||||