Class NonNullDefaultAwareTypeAnnotationWalker
java.lang.Object
org.aspectj.org.eclipse.jdt.internal.compiler.classfmt.TypeAnnotationWalker
org.aspectj.org.eclipse.jdt.internal.compiler.classfmt.NonNullDefaultAwareTypeAnnotationWalker
- All Implemented Interfaces:
ITypeAnnotationWalker
A type annotation walker that adds missing NonNull annotations according to the current default.
-
Field Summary
Fields inherited from class org.aspectj.org.eclipse.jdt.internal.compiler.classfmt.TypeAnnotationWalker
matches, pathPtr, typeAnnotationsFields inherited from interface org.aspectj.org.eclipse.jdt.internal.compiler.env.ITypeAnnotationWalker
EMPTY_ANNOTATION_WALKER, NO_ANNOTATIONS -
Constructor Summary
ConstructorsConstructorDescriptionNonNullDefaultAwareTypeAnnotationWalker(int defaultNullness, LookupEnvironment environment) Create an initial walker without 'real' type annotations, but with a nonnull default.NonNullDefaultAwareTypeAnnotationWalker(IBinaryTypeAnnotation[] typeAnnotations, int defaultNullness, LookupEnvironment environment) Create initial walker with non-empty type annotations. -
Method Summary
Modifier and TypeMethodDescriptiongetAnnotationsAtCursor(int currentTypeId, boolean mayApplyArrayContentsDefaultNullness) Retrieve the type annotations at the current position reached by invocations of toXYZ() methods.protected TypeAnnotationWalkerrestrict(long newMatches, int newPathPtr) toField()Walk to a field.toMethodParameter(short index) Walk to the index'th visible formal method parameter (i.e., not counting synthetic args).Walk to the return type of a method.Descend down one level of array dimensions.protected ITypeAnnotationWalkertoNextDetail(int detailKind) toSupertype(short index, char[] superTypeSignature) Walk to the specified supertype either index based or name based:toTypeArgument(int rank) Walk to the type argument of the given rank.toTypeBound(short boundIndex) Detail ofITypeAnnotationWalker.toTypeParameterBounds(boolean, int): walk to the bounds of the previously selected type parameter.toTypeParameter(boolean isClassTypeParameter, int rank) Walk to the type parameter of the given rank.toTypeParameterBounds(boolean isClassTypeParameter, int parameterRank) Walk to the bounds of a type parameter of either a class or a method (signaled by isClassTypeParameter).Walk to the bound of a wildcard.static ITypeAnnotationWalkerupdateWalkerForParamNonNullDefault(ITypeAnnotationWalker walker, int defaultNullness, LookupEnvironment environment) Methods inherited from class org.aspectj.org.eclipse.jdt.internal.compiler.classfmt.TypeAnnotationWalker
toNextNestedType, toReceiver, toTarget, toThrows
-
Constructor Details
-
NonNullDefaultAwareTypeAnnotationWalker
public NonNullDefaultAwareTypeAnnotationWalker(IBinaryTypeAnnotation[] typeAnnotations, int defaultNullness, LookupEnvironment environment) Create initial walker with non-empty type annotations. -
NonNullDefaultAwareTypeAnnotationWalker
Create an initial walker without 'real' type annotations, but with a nonnull default.
-
-
Method Details
-
restrict
- Overrides:
restrictin classTypeAnnotationWalker
-
toSupertype
Description copied from class:TypeAnnotationWalkerWalk to the specified supertype either index based or name based:(superTypesSignature is ignored in this implementation).
- Specified by:
toSupertypein interfaceITypeAnnotationWalker- Overrides:
toSupertypein classTypeAnnotationWalker- Parameters:
index- -1 is superclass, else index into the list of superinterfacessuperTypeSignature- name and type arguments of the super type to visit
-
toMethodParameter
Description copied from interface:ITypeAnnotationWalkerWalk to the index'th visible formal method parameter (i.e., not counting synthetic args).- Specified by:
toMethodParameterin interfaceITypeAnnotationWalker- Overrides:
toMethodParameterin classTypeAnnotationWalker
-
toField
Description copied from interface:ITypeAnnotationWalkerWalk to a field.- Specified by:
toFieldin interfaceITypeAnnotationWalker- Overrides:
toFieldin classTypeAnnotationWalker
-
toMethodReturn
Description copied from interface:ITypeAnnotationWalkerWalk to the return type of a method.- Specified by:
toMethodReturnin interfaceITypeAnnotationWalker- Overrides:
toMethodReturnin classTypeAnnotationWalker
-
toTypeBound
Description copied from interface:ITypeAnnotationWalkerDetail ofITypeAnnotationWalker.toTypeParameterBounds(boolean, int): walk to the bounds of the previously selected type parameter.- Specified by:
toTypeBoundin interfaceITypeAnnotationWalker- Overrides:
toTypeBoundin classTypeAnnotationWalker
-
toWildcardBound
Description copied from interface:ITypeAnnotationWalkerWalk to the bound of a wildcard.- Specified by:
toWildcardBoundin interfaceITypeAnnotationWalker- Overrides:
toWildcardBoundin classTypeAnnotationWalker
-
toTypeParameterBounds
Description copied from interface:ITypeAnnotationWalkerWalk to the bounds of a type parameter of either a class or a method (signaled by isClassTypeParameter). Clients must then callITypeAnnotationWalker.toTypeBound(short)on the resulting walker.- Specified by:
toTypeParameterBoundsin interfaceITypeAnnotationWalker- Overrides:
toTypeParameterBoundsin classTypeAnnotationWalker- Parameters:
isClassTypeParameter- whether we are looking at a class type parameter (else: method type parameter)parameterRank- rank of the type parameter.
-
toTypeArgument
Description copied from interface:ITypeAnnotationWalkerWalk to the type argument of the given rank.- Specified by:
toTypeArgumentin interfaceITypeAnnotationWalker- Overrides:
toTypeArgumentin classTypeAnnotationWalker
-
toTypeParameter
Description copied from interface:ITypeAnnotationWalkerWalk to the type parameter of the given rank.- Specified by:
toTypeParameterin interfaceITypeAnnotationWalker- Overrides:
toTypeParameterin classTypeAnnotationWalker- Parameters:
isClassTypeParameter- whether we are looking for a class type parameter (else: method type parameter)rank- rank of the type parameter
-
toNextDetail
- Overrides:
toNextDetailin classTypeAnnotationWalker
-
getAnnotationsAtCursor
public IBinaryAnnotation[] getAnnotationsAtCursor(int currentTypeId, boolean mayApplyArrayContentsDefaultNullness) Description copied from interface:ITypeAnnotationWalkerRetrieve the type annotations at the current position reached by invocations of toXYZ() methods.- Specified by:
getAnnotationsAtCursorin interfaceITypeAnnotationWalker- Overrides:
getAnnotationsAtCursorin classTypeAnnotationWalker- Parameters:
currentTypeId- the id of the type being annotated; 0 signals don't care / unknown; -1 signals if annotating a wildcard or a use of a type variable.
-
toNextArrayDimension
Description copied from interface:ITypeAnnotationWalkerDescend down one level of array dimensions.- Specified by:
toNextArrayDimensionin interfaceITypeAnnotationWalker- Overrides:
toNextArrayDimensionin classTypeAnnotationWalker
-
updateWalkerForParamNonNullDefault
public static ITypeAnnotationWalker updateWalkerForParamNonNullDefault(ITypeAnnotationWalker walker, int defaultNullness, LookupEnvironment environment)
-