Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 4 of 4 for NoOpPropertyAnnotationHandler (0.25 sec)

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

    import org.gradle.internal.properties.PropertyValue;
    import org.gradle.internal.properties.PropertyVisitor;
    
    import java.lang.annotation.Annotation;
    
    public class NoOpPropertyAnnotationHandler extends AbstractPropertyAnnotationHandler {
        public NoOpPropertyAnnotationHandler(Class<? extends Annotation> annotationType) {
            super(annotationType, Kind.OTHER, ImmutableSet.of());
        }
        @Override
        public boolean isPropertyRelevant() {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Sep 28 09:51:04 UTC 2023
    - 1.3K bytes
    - Viewed (0)
  2. subprojects/core/src/test/groovy/org/gradle/api/internal/tasks/AbstractTaskInputsAndOutputsTest.groovy

    import org.gradle.internal.properties.annotations.DefaultTypeMetadataStore
    import org.gradle.internal.properties.annotations.MissingPropertyAnnotationHandler
    import org.gradle.internal.properties.annotations.NoOpPropertyAnnotationHandler
    import org.gradle.internal.properties.annotations.TestPropertyTypeResolver
    import org.gradle.internal.properties.bean.DefaultPropertyWalker
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 11 20:42:35 UTC 2024
    - 4.6K bytes
    - Viewed (0)
  3. subprojects/core/src/main/java/org/gradle/internal/service/scopes/ExecutionGlobalServices.java

        }
    
        @Provides
        PropertyAnnotationHandler createConsoleAnnotationHandler() {
            return new NoOpPropertyAnnotationHandler(Console.class);
        }
    
        @Provides
        PropertyAnnotationHandler createInternalAnnotationHandler() {
            return new NoOpPropertyAnnotationHandler(Internal.class);
        }
    
        @Provides
        PropertyAnnotationHandler createServiceReferenceAnnotationHandler() {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon May 27 12:34:44 UTC 2024
    - 14.7K bytes
    - Viewed (0)
  4. subprojects/core/src/main/java/org/gradle/api/internal/tasks/properties/InspectionSchemeFactory.java

    import org.gradle.internal.instantiation.InstantiationScheme;
    import org.gradle.internal.properties.annotations.DefaultTypeMetadataStore;
    import org.gradle.internal.properties.annotations.NoOpPropertyAnnotationHandler;
    import org.gradle.internal.properties.annotations.PropertyAnnotationHandler;
    import org.gradle.internal.properties.annotations.MissingPropertyAnnotationHandler;
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Apr 17 00:47:05 UTC 2024
    - 6.2K bytes
    - Viewed (0)
Back to top