Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 1 of 1 for isAnnotationOfType (0.15 sec)

  1. platforms/core-runtime/internal-instrumentation-processor/src/main/java/org/gradle/internal/instrumentation/processor/modelreader/impl/AnnotationUtils.java

        public static Optional<? extends AnnotationMirror> findMetaAnnotationMirror(Element element, Class<? extends Annotation> annotationClass) {
            return collectMetaAnnotations(element).stream().filter(it -> isAnnotationOfType(it, annotationClass)).findFirst();
        }
    
        private static Set<AnnotationMirror> collectMetaAnnotations(Element annotatedElement) {
            Set<AnnotationMirror> result = new LinkedHashSet<>();
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Nov 15 08:22:43 UTC 2023
    - 3.1K bytes
    - Viewed (0)
Back to top