Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for JavaPropertyReflectionUtilTestMethods (0.31 sec)

  1. platforms/core-configuration/model-core/src/test/groovy/org/gradle/internal/reflect/JavaPropertyReflectionUtilTestMethods.java

     * limitations under the License.
     */
    
    package org.gradle.internal.reflect;
    
    import java.util.Collection;
    import java.util.List;
    import java.util.function.BiConsumer;
    
    public interface JavaPropertyReflectionUtilTestMethods<T> {
        T simpleTypeVariable();
    
        List<T> encapsulatedTypeVariable();
    
        T[] arrayTypeWithTypeVariable();
    
        List<Collection<? extends List<? super T>>[]> complexTypeWithTypeVariable();
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Sep 28 09:51:04 UTC 2023
    - 1.8K bytes
    - Viewed (0)
  2. platforms/core-configuration/model-core/src/test/groovy/org/gradle/internal/reflect/JavaPropertyReflectionUtilTest.groovy

            def resolvedReturnType = JavaPropertyReflectionUtil.resolveMethodReturnType(JavaPropertyReflectionUtilTestMethods.InterfaceRealizingTypeParameter, method)
            expect:
            resolvedReturnType.toString() == expectedResolvedReturnType
    
            where:
            method << (JavaPropertyReflectionUtilTestMethods.getDeclaredMethods() as List)
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Sep 28 09:51:04 UTC 2023
    - 11.9K bytes
    - Viewed (0)
Back to top