Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 5 of 5 for AnnotationCategory (0.24 sec)

  1. platforms/core-configuration/model-core/src/main/java/org/gradle/internal/properties/annotations/DefaultTypeMetadataStore.java

                for (Map.Entry<AnnotationCategory, Annotation> entry : propertyAnnotations.entrySet()) {
                    AnnotationCategory annotationCategory = entry.getKey();
                    if (annotationCategory == TYPE) {
                        continue;
                    }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon May 06 21:54:36 UTC 2024
    - 14.9K bytes
    - Viewed (0)
  2. platforms/core-configuration/model-core/src/main/java/org/gradle/internal/reflect/annotations/impl/DefaultTypeAnnotationMetadataStore.java

            private final ListMultimap<AnnotationCategory, Annotation> declaredAnnotations = MultimapBuilder
                .treeKeys(comparing(AnnotationCategory::getDisplayName))
                .arrayListValues()
                .build();
            private final SetMultimap<AnnotationCategory, Annotation> inheritedInterfaceAnnotations = MultimapBuilder
                .treeKeys(comparing(AnnotationCategory::getDisplayName))
                .linkedHashSetValues()
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon May 06 21:54:36 UTC 2024
    - 37.6K bytes
    - Viewed (0)
  3. testing/internal-integ-testing/src/main/groovy/org/gradle/integtests/fixtures/validation/ValidationProblemPropertyAnnotationHandler.java

    import org.gradle.internal.properties.annotations.AbstractPropertyAnnotationHandler;
    import org.gradle.internal.properties.annotations.PropertyMetadata;
    import org.gradle.internal.reflect.annotations.AnnotationCategory;
    import org.gradle.internal.reflect.validation.TypeValidationContext;
    
    class ValidationProblemPropertyAnnotationHandler extends AbstractPropertyAnnotationHandler {
        public ValidationProblemPropertyAnnotationHandler() {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 2.5K bytes
    - Viewed (0)
  4. platforms/core-configuration/model-core/src/testFixtures/groovy/org/gradle/internal/reflect/annotations/TestAnnotationHandlingSupport.groovy

    import static org.gradle.internal.properties.annotations.PropertyAnnotationHandler.Kind.INPUT
    import static org.gradle.internal.reflect.annotations.AnnotationCategory.TYPE
    
    trait TestAnnotationHandlingSupport {
    
        enum Modifiers implements AnnotationCategory {
            COLOR;
    
            @Override
            String getDisplayName() {
                name()
            }
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 11 20:42:35 UTC 2024
    - 5.2K bytes
    - Viewed (0)
  5. platforms/core-configuration/model-core/src/main/java/org/gradle/internal/reflect/annotations/TypeAnnotationMetadataStore.java

    /**
     * A validating metadata store that handles annotations on types and their JavaBeans properties.
     *
     * <p>
     * The store considers property annotations to belong to {@linkplain AnnotationCategory categories}.
     * Each property can have at most one annotation per category.
     * Validation failures with a given type can be visited using {@link TypeAnnotationMetadata#visitValidationFailures(TypeValidationContext)}.
     * </p>
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Apr 17 00:47:05 UTC 2024
    - 2.6K bytes
    - Viewed (0)
Back to top