Class ExternalAnnotationProvider.TypeParametersAnnotationWalker
java.lang.Object
org.aspectj.org.eclipse.jdt.internal.compiler.classfmt.ExternalAnnotationProvider.TypeParametersAnnotationWalker
- All Implemented Interfaces:
ITypeAnnotationWalker
- Enclosing class:
ExternalAnnotationProvider
Walker that may serve the annotations on type parameters of the current class or method.
-
Field Summary
Fields inherited from interface org.aspectj.org.eclipse.jdt.internal.compiler.env.ITypeAnnotationWalker
EMPTY_ANNOTATION_WALKER, NO_ANNOTATIONS -
Method Summary
Modifier and TypeMethodDescriptiongetAnnotationsAtCursor(int currentTypeId, boolean mayApplyArrayContentsDefaultNullness) Retrieve the type annotations at the current position reached by invocations of toXYZ() methods.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.Descend down one level of type nesting.Walk to the receiver type of a method.toSupertype(short index, char[] superTypeSignature) Walk to the specified supertype either index based or name based:toThrows(int index) Walk to the throws type at the given index.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.
-
Method Details
-
toTypeParameter
Description copied from interface:ITypeAnnotationWalkerWalk to the type parameter of the given rank.- Specified by:
toTypeParameterin interfaceITypeAnnotationWalker- Parameters:
isClassTypeParameter- whether we are looking for a class type parameter (else: method type parameter)rank- rank of the type parameter
-
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- Parameters:
isClassTypeParameter- whether we are looking at a class type parameter (else: method type parameter)parameterRank- rank of the type parameter.
-
toTypeBound
Description copied from interface:ITypeAnnotationWalkerDetail ofITypeAnnotationWalker.toTypeParameterBounds(boolean, int): walk to the bounds of the previously selected type parameter.- Specified by:
toTypeBoundin interfaceITypeAnnotationWalker
-
toField
Description copied from interface:ITypeAnnotationWalkerWalk to a field. -
toMethodReturn
Description copied from interface:ITypeAnnotationWalkerWalk to the return type of a method. -
toMethodParameter
Description copied from interface:ITypeAnnotationWalkerWalk to the index'th visible formal method parameter (i.e., not counting synthetic args). -
toThrows
Description copied from interface:ITypeAnnotationWalkerWalk to the throws type at the given index. -
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- 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.
-
toReceiver
Description copied from interface:ITypeAnnotationWalkerWalk to the receiver type of a method. Note: Type annotations on receiver are not currently used by the compiler.- Specified by:
toReceiverin interfaceITypeAnnotationWalker
-
toSupertype
Description copied from interface:ITypeAnnotationWalkerWalk to the specified supertype either index based or name based:- Specified by:
toSupertypein interfaceITypeAnnotationWalker- Parameters:
index- -1 is superclass, else index into the list of superinterfacessuperTypeSignature- name and type arguments of the super type to visit
-
toTypeArgument
Description copied from interface:ITypeAnnotationWalkerWalk to the type argument of the given rank.- Specified by:
toTypeArgumentin interfaceITypeAnnotationWalker
-
toWildcardBound
Description copied from interface:ITypeAnnotationWalkerWalk to the bound of a wildcard.- Specified by:
toWildcardBoundin interfaceITypeAnnotationWalker
-
toNextArrayDimension
Description copied from interface:ITypeAnnotationWalkerDescend down one level of array dimensions.- Specified by:
toNextArrayDimensionin interfaceITypeAnnotationWalker
-
toNextNestedType
Description copied from interface:ITypeAnnotationWalkerDescend down one level of type nesting.- Specified by:
toNextNestedTypein interfaceITypeAnnotationWalker
-