Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for getAnnotation (0.15 sec)

  1. maven-core/src/test/resources/apiv4-repo/junit/junit/4.13.1/junit-4.13.1.jar

    producesType(reflect.Type); private Class[] getParameterTypes(); public annotation.Annotation[] getAnnotations(); public annotation.Annotation getAnnotation(Class); public String toString(); } org/junit/runners/model/Annotatable.class package org.junit.runners.model; public abstract interface Annotatable { public abstract annotation.Annotation[] getAnnotations(); public abstract annotation.Annotation getAnnotation(Class); } org/junit/runners/model/Statement.class package org.junit.runners.model; public...
    Archive
    - Registered: Sun Apr 28 03:35:10 GMT 2024
    - Last Modified: Tue Dec 19 19:08:55 GMT 2023
    - 373.7K bytes
    - Viewed (0)
  2. maven-core/src/main/java/org/apache/maven/session/scope/internal/SessionScope.java

        }
    
        private Class<?>[] getInterfaces(Class<?> superType) {
            if (superType.isInterface()) {
                return new Class<?>[] {superType};
            } else {
                for (Annotation a : superType.getAnnotations()) {
                    Class<? extends Annotation> annotationType = a.annotationType();
                    if ("org.eclipse.sisu.Typed".equals(annotationType.getName())
    Java
    - Registered: Sun May 05 03:35:11 GMT 2024
    - Last Modified: Tue Apr 23 12:52:20 GMT 2024
    - 6.8K bytes
    - Viewed (0)
Back to top