X-Git-Url: http://git.megacz.com/?a=blobdiff_plain;f=repo%2Forg.ibex.tool%2Fsrc%2Forg%2Feclipse%2Fjdt%2Finternal%2Fcompiler%2Fproblem%2FProblemSeverities.java;fp=repo%2Forg.ibex.tool%2Fsrc%2Forg%2Feclipse%2Fjdt%2Finternal%2Fcompiler%2Fproblem%2FProblemSeverities.java;h=0000000000000000000000000000000000000000;hb=040fa5af2cd00017cf3575950cdaade34a6d7f6c;hp=d2cf19311d3c05f82428256ec7a0dd201f20a534;hpb=a580fb8376d315d05e4d6bfdff9ff1101a151cd6;p=org.ibex.tool.git diff --git a/repo/org.ibex.tool/src/org/eclipse/jdt/internal/compiler/problem/ProblemSeverities.java b/repo/org.ibex.tool/src/org/eclipse/jdt/internal/compiler/problem/ProblemSeverities.java deleted file mode 100644 index d2cf193..0000000 --- a/repo/org.ibex.tool/src/org/eclipse/jdt/internal/compiler/problem/ProblemSeverities.java +++ /dev/null @@ -1,25 +0,0 @@ -/******************************************************************************* - * Copyright (c) 2000, 2004 IBM Corporation and others. - * All rights reserved. This program and the accompanying materials - * are made available under the terms of the Common Public License v1.0 - * which accompanies this distribution, and is available at - * http://www.eclipse.org/legal/cpl-v10.html - * - * Contributors: - * IBM Corporation - initial API and implementation - *******************************************************************************/ -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; -}