Get all the annotations from the source annotation set that lie within the range of the containing annotation. @param sourceAnnotationSet the annotation set from which to select @param containingAnnotation the annotation whose range must contain the selected annotations @return the AnnotationSet co
(
AnnotationSet sourceAnnotationSet,
Annotation containingAnnotation)
| 372 | * the offset range of the containingAnnotation |
| 373 | */ |
| 374 | public static AnnotationSet getContainedAnnotations( |
| 375 | AnnotationSet sourceAnnotationSet, |
| 376 | Annotation containingAnnotation) { |
| 377 | return getContainedAnnotations(sourceAnnotationSet,containingAnnotation,""); |
| 378 | } |
| 379 | |
| 380 | /** |
| 381 | * Get all the annotations of type targetType |
nothing calls this directly
no test coverage detected