Get all the annotations from the source annotation set that cover the range of the specified annotation. @param sourceAnnotationSet the annotation set from which to select @param coveredAnnotation the annotation whose range must equal or lie within the selected annotations @return the AnnotationSet
(
AnnotationSet sourceAnnotationSet,
Annotation coveredAnnotation)
| 468 | * the offset range of the coveredAnnotation |
| 469 | */ |
| 470 | public static AnnotationSet getCoveringAnnotations( |
| 471 | AnnotationSet sourceAnnotationSet, |
| 472 | Annotation coveredAnnotation) { |
| 473 | return getCoveringAnnotations(sourceAnnotationSet,coveredAnnotation,""); |
| 474 | } |
| 475 | |
| 476 | /** |
| 477 | * Get all the annotations of type targetType |
nothing calls this directly
no test coverage detected