1 11 package org.eclipse.jdt.internal.compiler.problem; 12 13 public interface ProblemSeverities { 14 15 final int Ignore = -1; final int Warning = 0; 18 final int Error = 1; final int AbortCompilation = 2; 20 final int AbortCompilationUnit = 4; 21 final int AbortType = 8; 22 final int AbortMethod = 16; 23 final int Abort = 30; final int Optional = 32; final int SecondaryError = 64; 26 final int Fatal = 128; } 28 | Popular Tags |