import eclipse 3.1 M4 compiler
[org.ibex.tool.git] / src / org / eclipse / jdt / internal / compiler / lookup / ProblemReasons.java
index b34f200..97570b7 100644 (file)
@@ -20,4 +20,10 @@ public interface ProblemReasons {
        final int NonStaticReferenceInConstructorInvocation = 6;
        final int NonStaticReferenceInStaticContext = 7;
        final int ReceiverTypeNotVisible = 8;
+       final int IllegalSuperTypeVariable = 9;
+       final int ParameterBoundMismatch = 10; // for generic method
+       final int TypeParameterArityMismatch = 11; // for generic method
+       final int ParameterizedMethodTypeMismatch = 12; // for generic method
+       final int TypeArgumentsForRawGenericMethod = 13; // for generic method
+       final int InvalidTypeForStaticImport = 14;
 }