Skip to main content
summaryrefslogtreecommitdiffstats
blob: 24edf61bf18d2762a8a0c154a8cc6d5b8954c042 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
package org.eclipse.jdt.internal.compiler.problem;

public interface ProblemSeverities {
	final int Ignore = -1; // during handling only
	final int Warning = 0; // during handling only

	final int Error = 1; // when bit is set: problem is error, if not it is a warning
	final int AbortCompilation = 2;
	final int AbortCompilationUnit = 4;
	final int AbortType = 8;
	final int AbortMethod = 16;
	final int Abort = 30; // 2r11110
	final int SecondaryError = 64;
}

Back to the top