Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for getInterfaceProperty (0.23 sec)

  1. platforms/core-configuration/model-core/src/test/groovy/org/gradle/internal/instantiation/generator/AsmBackedClassGeneratorTest.java

                public Object call() throws Exception {
                    return "conventionValue";
                }
            });
            assertEquals(null, bean.getProperty());
            assertEquals(null, bean.getInterfaceProperty());
            assertEquals("conventionValue", bean.getOverriddenProperty());
            assertEquals("conventionValue", bean.getOtherProperty());
        }
    
        @Test
        @SuppressWarnings("deprecation")
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Oct 05 19:36:14 UTC 2023
    - 74.6K bytes
    - Viewed (0)
  2. platforms/core-configuration/model-core/src/test/groovy/org/gradle/internal/reflect/annotations/impl/DefaultTypeAnnotationMetadataStoreTest.groovy

                subclassProperty: [(TYPE): Large]
            ]
        }
    
        @SuppressWarnings("unused")
        interface InterfaceWithProperties {
            @Small
            String getInterfaceProperty()
        }
    
        @SuppressWarnings("unused")
        abstract class TypeWithInterfaceProperties implements InterfaceWithProperties {
            @Large
            abstract String getSubclassProperty()
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sun Feb 11 15:31:37 UTC 2024
    - 25.7K bytes
    - Viewed (0)
Back to top