Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 7 of 7 for getInterfaces (0.14 sec)

  1. android/guava-tests/test/com/google/common/util/concurrent/ListenableFutureTest.java

                    + " version we released in a separate artifact com.google.guava:listenablefuture.")
            .that(ListenableFuture.class.getInterfaces())
            .asList()
            .containsExactly(Future.class);
      }
    Registered: Fri Nov 01 12:43:10 UTC 2024
    - Last Modified: Thu Jun 15 19:48:16 UTC 2023
    - 1.7K bytes
    - Viewed (0)
  2. compat/maven-model-builder/src/main/java/org/apache/maven/model/interpolation/reflection/ClassMap.java

            // This is redundant as currently java.lang.Object does not implement
            // any interfaces, however nothing guarantees it will not in the future.
            Class<?>[] interfaces = clazz.getInterfaces();
            for (int i = interfaces.length; i-- > 0; ) {
                upcastCount = getAccessibleMethods(interfaces[i], methodInfos, upcastCount);
    
                // Short circuit if all methods were upcast
    Registered: Sun Nov 03 03:35:11 UTC 2024
    - Last Modified: Fri Oct 25 12:31:46 UTC 2024
    - 13.5K bytes
    - Viewed (0)
  3. android/guava-tests/test/com/google/common/util/concurrent/ForwardingObjectTester.java

        @SuppressWarnings("unchecked") // super interface type of T
        Class<? super T> interfaceType =
            (Class<? super T>) Iterables.getOnlyElement(Arrays.asList(forwarderClass.getInterfaces()));
        new ForwardingWrapperTester()
            .testForwarding(
                interfaceType,
                new Function<Object, T>() {
                  @Override
                  public T apply(Object delegate) {
    Registered: Fri Nov 01 12:43:10 UTC 2024
    - Last Modified: Thu Jan 05 19:41:03 UTC 2023
    - 2.5K bytes
    - Viewed (0)
  4. src/main/java/org/codelibs/core/beans/impl/BeanDescImpl.java

         *            対象のインターフェース
         */
        protected void setupFieldDescsByInterface(final Class<?> interfaceClass) {
            addFieldDescs(interfaceClass);
            final Class<?>[] interfaces = interfaceClass.getInterfaces();
            for (final Class<?> intf : interfaces) {
                setupFieldDescsByInterface(intf);
            }
        }
    
        /**
         * クラスに定義されたフィールドを準備します。
         *
         * @param targetClass
    Registered: Fri Nov 01 20:58:10 UTC 2024
    - Last Modified: Thu Mar 07 01:59:08 UTC 2024
    - 26.1K bytes
    - Viewed (0)
  5. src/main/java/org/codelibs/core/lang/GenericsUtil.java

            if (superClass != null) {
                gatherTypeVariables(superClass, superClassType, map);
            }
    
            final Class<?>[] interfaces = clazz.getInterfaces();
            final Type[] interfaceTypes = clazz.getGenericInterfaces();
            for (int i = 0; i < interfaces.length; ++i) {
                gatherTypeVariables(interfaces[i], interfaceTypes[i], map);
            }
    
    Registered: Fri Nov 01 20:58:10 UTC 2024
    - Last Modified: Thu Mar 07 01:59:08 UTC 2024
    - 23.6K bytes
    - Viewed (0)
  6. guava-tests/test/com/google/common/reflect/TypeTokenTest.java

      public <T, T1 extends T> void testAssignableGenericArrayToClass() {
        assertTrue(TypeToken.of(Object[].class.getSuperclass()).isSupertypeOf(new TypeToken<T[]>() {}));
        for (Class<?> interfaceType : Object[].class.getInterfaces()) {
          assertTrue(TypeToken.of(interfaceType).isSupertypeOf(new TypeToken<T[]>() {}));
        }
        assertTrue(TypeToken.of(Object.class).isSupertypeOf(new TypeToken<T[]>() {}));
    Registered: Fri Nov 01 12:43:10 UTC 2024
    - Last Modified: Mon Oct 21 21:13:09 UTC 2024
    - 89.1K bytes
    - Viewed (0)
  7. android/guava-tests/test/com/google/common/reflect/TypeTokenTest.java

      public <T, T1 extends T> void testAssignableGenericArrayToClass() {
        assertTrue(TypeToken.of(Object[].class.getSuperclass()).isSupertypeOf(new TypeToken<T[]>() {}));
        for (Class<?> interfaceType : Object[].class.getInterfaces()) {
          assertTrue(TypeToken.of(interfaceType).isSupertypeOf(new TypeToken<T[]>() {}));
        }
        assertTrue(TypeToken.of(Object.class).isSupertypeOf(new TypeToken<T[]>() {}));
    Registered: Fri Nov 01 12:43:10 UTC 2024
    - Last Modified: Mon Oct 21 21:13:09 UTC 2024
    - 89.1K bytes
    - Viewed (0)
Back to top