Skip to main content
summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
Diffstat (limited to 'org.eclipse.jdt.core/model/org/eclipse/jdt/core/IJavaModelStatusConstants.java')
-rw-r--r--org.eclipse.jdt.core/model/org/eclipse/jdt/core/IJavaModelStatusConstants.java9
1 files changed, 9 insertions, 0 deletions
diff --git a/org.eclipse.jdt.core/model/org/eclipse/jdt/core/IJavaModelStatusConstants.java b/org.eclipse.jdt.core/model/org/eclipse/jdt/core/IJavaModelStatusConstants.java
index 6297996c38..27dfaa148f 100644
--- a/org.eclipse.jdt.core/model/org/eclipse/jdt/core/IJavaModelStatusConstants.java
+++ b/org.eclipse.jdt.core/model/org/eclipse/jdt/core/IJavaModelStatusConstants.java
@@ -227,4 +227,13 @@ public interface IJavaModelStatusConstants {
* Status constant indicating that a classpath entry was invalid
*/
public static final int INVALID_CLASSPATH = 964;
+ /**
+ * Status constant indicating that a value is not a possible value
+ * for an option.
+ */
+ public static final int INVALID_OPTION_VALUE = 963;
+ /**
+ * Status constant indicating that an option is not an existing option.
+ */
+ public static final int INVALID_OPTION = 962;
}

Back to the top