blob: 956b806bf30baa7c43fc837bd59f1d3e2958b8bb [file] [log] [blame]
/*******************************************************************************
* Copyright (c) 2000, 2016 IBM Corporation and others.
* All rights reserved. This program and the accompanying materials
* are made available under the terms of the Eclipse Public License v1.0
* which accompanies this distribution, and is available at
* http://www.eclipse.org/legal/epl-v10.html
*
* Contributors:
* IBM Corporation - initial API and implementation
* Fraunhofer FIRST - extended API and implementation
* Technical University Berlin - extended API and implementation
* Jesper S Moller - Contributions for
* 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)
* Bug 416182 - [1.8][compiler][null] Contradictory null annotations not rejected
*******************************************************************************/
package org.eclipse.jdt.internal.compiler.lookup;
public interface ProblemReasons {
final int NoError = 0;
final int NotFound = 1;
final int NotVisible = 2;
final int Ambiguous = 3;
final int InternalNameProvided = 4; // used if an internal name is used in source
final int InheritedNameHidesEnclosingName = 5;
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;
final int InvalidTypeForAutoManagedResource = 15;
final int VarargsElementTypeNotVisible = 16;
final int NoSuchSingleAbstractMethod = 17;
final int NotAWellFormedParameterizedType = 18;
// no longer in use: final int IntersectionHasMultipleFunctionalInterfaces = 19;
final int NonStaticOrAlienTypeReceiver = 20;
final int AttemptToBypassDirectSuper = 21; // super access within default method
final int DefectiveContainerAnnotationType = 22;
final int InvocationTypeInferenceFailure = 23;
final int ApplicableMethodOverriddenByInapplicable = 24;
final int ContradictoryNullAnnotations = 25;
final int NoSuchMethodOnArray = 26;
final int InferredApplicableMethodInapplicable = 27; // 18.5.1 ignores arguments not pertinent to applicability. When these are taken into consideration method could fail applicability
final int NoProperEnclosingInstance = 28;
final int InterfaceMethodInvocationNotBelow18 = 29;
//{ObjectTeams;
final int NoTeamContext = 50;
final int AnchorNotFinal = 51;
final int AnchorNotATeam = 52;
final int AnchorNotFound = 53;
final int ProblemAlreadyReported = 54;
// SH}
}