Skip to main content
summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorStephan Herrmann2014-01-04 22:19:31 +0000
committerStephan Herrmann2014-01-04 22:19:31 +0000
commitc1c48623258f71323ba7a44ab2974fc0710f7b75 (patch)
tree12fc75b5b9b1dbecaf06fd247ec9847765df8d29 /org.eclipse.jdt.core/compiler/org/eclipse/jdt/internal/compiler/lookup/ProblemReasons.java
parent97f9e5d478ea2e2720c31ec9f79342d3897ef2f7 (diff)
downloadorg.eclipse.objectteams-c1c48623258f71323ba7a44ab2974fc0710f7b75.tar.gz
org.eclipse.objectteams-c1c48623258f71323ba7a44ab2974fc0710f7b75.tar.xz
org.eclipse.objectteams-c1c48623258f71323ba7a44ab2974fc0710f7b75.zip
Update jdt.core from origin JAVA_BETA8 with
Diffstat (limited to 'org.eclipse.jdt.core/compiler/org/eclipse/jdt/internal/compiler/lookup/ProblemReasons.java')
-rw-r--r--org.eclipse.jdt.core/compiler/org/eclipse/jdt/internal/compiler/lookup/ProblemReasons.java16
1 files changed, 11 insertions, 5 deletions
diff --git a/org.eclipse.jdt.core/compiler/org/eclipse/jdt/internal/compiler/lookup/ProblemReasons.java b/org.eclipse.jdt.core/compiler/org/eclipse/jdt/internal/compiler/lookup/ProblemReasons.java
index 75c810193..806839a71 100644
--- a/org.eclipse.jdt.core/compiler/org/eclipse/jdt/internal/compiler/lookup/ProblemReasons.java
+++ b/org.eclipse.jdt.core/compiler/org/eclipse/jdt/internal/compiler/lookup/ProblemReasons.java
@@ -5,6 +5,10 @@
* which accompanies this distribution, and is available at
* http://www.eclipse.org/legal/epl-v10.html
*
+ * This is an implementation of an early-draft specification developed under the Java
+ * Community Process (JCP) and is made available for testing and evaluation purposes
+ * only. The code is not compatible with any specification of the JCP.
+ *
* Contributors:
* IBM Corporation - initial API and implementation
* Fraunhofer FIRST - extended API and implementation
@@ -13,6 +17,7 @@
* bug 382701 - [1.8][compiler] Implement semantic analysis of Lambda expressions & Reference expression
* Stephan Herrmann - Contribution for
* bug 404649 - [1.8][compiler] detect illegal reference to indirect or redundant super
+ * Bug 400874 - [1.8][compiler] Inference infrastructure should evolve to meet JLS8 18.x (Part G of JSR335 spec)
*******************************************************************************/
package org.eclipse.jdt.internal.compiler.lookup;
@@ -40,11 +45,12 @@ public interface ProblemReasons {
final int NonStaticOrAlienTypeReceiver = 20;
final int AttemptToBypassDirectSuper = 21; // super access within default method
final int DefectiveContainerAnnotationType = 22;
+ final int ParameterizedMethodExpectedTypeProblem = 23;
//{ObjectTeams;
- final int NoTeamContext = 23;
- final int AnchorNotFinal = 24;
- final int AnchorNotATeam = 25;
- final int AnchorNotFound = 26;
- final int ProblemAlreadyReported = 27;
+ final int NoTeamContext = 24;
+ final int AnchorNotFinal = 25;
+ final int AnchorNotATeam = 26;
+ final int AnchorNotFound = 27;
+ final int ProblemAlreadyReported = 28;
// SH}
}

Back to the top