Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 9 of 9 for annotationType (0.18 sec)

  1. maven-core/src/main/java/org/apache/maven/session/scope/internal/SessionScope.java

                    Class<? extends Annotation> annotationType = a.annotationType();
                    if ("org.eclipse.sisu.Typed".equals(annotationType.getName())
                            || "javax.enterprise.inject.Typed".equals(annotationType.getName())
                            || "jakarta.enterprise.inject.Typed".equals(annotationType.getName())) {
                        try {
                            Class<?>[] value =
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Tue Jun 11 07:23:04 UTC 2024
    - 7.4K bytes
    - Viewed (0)
  2. platforms/core-execution/execution/src/main/java/org/gradle/internal/execution/model/annotations/AbstractInputPropertyAnnotationHandler.java

            super(annotationType, Kind.INPUT, allowedModifiers);
        }
    
        protected static void validateUnsupportedInputPropertyValueTypes(
            PropertyMetadata propertyMetadata,
            TypeValidationContext validationContext,
            Class<? extends Annotation> annotationType
        ) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Apr 26 16:02:33 UTC 2024
    - 4.7K bytes
    - Viewed (0)
  3. platforms/core-configuration/model-core/src/main/java/org/gradle/internal/reflect/annotations/impl/DefaultTypeAnnotationMetadata.java

            this.properties = ImmutableSortedSet.copyOf(properties);
            this.validationProblems = validationProblems;
        }
    
        @Override
        public ImmutableSet<Annotation> getAnnotations() {
            return annotations.values();
        }
    
        @Override
        public boolean isAnnotationPresent(Class<? extends Annotation> annotationType) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 11 20:42:21 UTC 2024
    - 2.7K bytes
    - Viewed (0)
  4. platforms/core-configuration/model-core/src/main/java/org/gradle/internal/reflect/annotations/TypeAnnotationMetadata.java

         */
        ImmutableSet<Annotation> getAnnotations();
    
        /**
         * Whether an annotation of the given type is present on the type itself.
         */
        boolean isAnnotationPresent(Class<? extends Annotation> annotationType);
    
        /**
         * Information about the type and annotations of each property of the type.
         */
        ImmutableSortedSet<PropertyAnnotationMetadata> getPropertiesAnnotationMetadata();
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 11 20:42:21 UTC 2024
    - 1.6K bytes
    - Viewed (0)
  5. platforms/core-configuration/model-core/src/testFixtures/groovy/org/gradle/internal/reflect/annotations/TestAnnotationHandlingSupport.groovy

        private static class SimplePropertyAnnotationHandler extends AbstractPropertyAnnotationHandler {
    
            SimplePropertyAnnotationHandler(Class<? extends Annotation> annotationType, Kind kind, Collection<Class<? extends Annotation>> allowedModifiers) {
                super(annotationType, kind, ImmutableSet.copyOf(allowedModifiers))
            }
    
            @Override
            boolean isPropertyRelevant() {
                return true
            }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 11 20:42:35 UTC 2024
    - 5.2K bytes
    - Viewed (0)
  6. platforms/core-execution/execution/src/main/java/org/gradle/internal/execution/model/annotations/AbstractInputFilePropertyAnnotationHandler.java

        private final InputFilePropertyType filePropertyType;
    
        public AbstractInputFilePropertyAnnotationHandler(Class<? extends Annotation> annotationType, InputFilePropertyType filePropertyType, ImmutableSet<Class<? extends Annotation>> allowedModifiers) {
            super(annotationType, allowedModifiers);
            this.filePropertyType = filePropertyType;
        }
    
        @Override
        public boolean isPropertyRelevant() {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Apr 26 16:02:33 UTC 2024
    - 6.4K bytes
    - Viewed (0)
  7. platforms/core-configuration/declarative-dsl-provider/src/main/kotlin/org/gradle/internal/declarativedsl/project/schemaFromGradleExtensions.kt

        override fun topLevelFunction(function: KFunction<*>, preIndex: DataSchemaBuilder.PreIndex) = null
    }
    
    
    private
    class CachedHierarchyAnnotationChecker(private val annotationType: KClass<out Annotation>) {
        fun isAnnotatedMaybeInSupertypes(kClass: KClass<*>): Boolean {
            // Can't use computeIfAbsent because of recursive calls
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu May 30 12:25:07 UTC 2024
    - 7.2K bytes
    - Viewed (0)
  8. platforms/core-runtime/stdlib-java-extensions/src/main/java/org/gradle/api/Incubating.java

     * change at any time.
     */
    @Documented
    @Retention(RetentionPolicy.RUNTIME)
    @Target({
        ElementType.PACKAGE,
        ElementType.TYPE,
        ElementType.ANNOTATION_TYPE,
        ElementType.CONSTRUCTOR,
        ElementType.FIELD,
        ElementType.METHOD
    })
    public @interface Incubating {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Jun 10 14:28:48 UTC 2024
    - 1.2K bytes
    - Viewed (0)
  9. platforms/core-runtime/internal-instrumentation-api/src/main/java/org/gradle/internal/instrumentation/api/annotations/ReplacedAccessor.java

    import java.lang.annotation.ElementType;
    import java.lang.annotation.Retention;
    import java.lang.annotation.RetentionPolicy;
    import java.lang.annotation.Target;
    
    @Retention(RetentionPolicy.CLASS)
    @Target({ElementType.ANNOTATION_TYPE})
    public @interface ReplacedAccessor {
    
        enum AccessorType {
            GETTER,
            SETTER
        }
    
        AccessorType value();
    
        /**
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Apr 23 08:40:36 UTC 2024
    - 1.5K bytes
    - Viewed (0)
Back to top