- Sort Score
- Result 10 results
- Languages All
Results 1 - 10 of 292 for Interface1 (0.6 sec)
-
guava-tests/test/com/google/common/reflect/TypeTokenTest.java
interfaceMap); } private interface Interface1 {} private interface Interface2 {} private interface Interface3<T> extends Iterable<T> {} private interface Interface12 extends Interface1, Interface2 {} private static class Class1 implements Interface1 {} private static final class NoInterface {}
Registered: Fri Sep 05 12:43:10 UTC 2025 - Last Modified: Tue Sep 02 17:23:59 UTC 2025 - 89K bytes - Viewed (0) -
android/guava-tests/test/com/google/common/reflect/TypeTokenTest.java
interfaceMap); } private interface Interface1 {} private interface Interface2 {} private interface Interface3<T> extends Iterable<T> {} private interface Interface12 extends Interface1, Interface2 {} private static class Class1 implements Interface1 {} private static final class NoInterface {}
Registered: Fri Sep 05 12:43:10 UTC 2025 - Last Modified: Tue Sep 02 17:23:59 UTC 2025 - 89K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/app/web/base/FessLoginAction.java
/** * Returns the appropriate HTML response for login handling. * If a user is already authenticated, redirects to the appropriate admin interface. * Otherwise, displays the login page. * * @return HTML response for login page or redirect to admin interface */ protected HtmlResponse getHtmlResponse() { return getUserBean().map(this::redirectByUser).orElse(asHtml(virtualHost(path_Login_IndexJsp))); }
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Jul 17 08:28:31 UTC 2025 - 2.6K bytes - Viewed (0) -
android/guava-testlib/src/com/google/common/testing/DummyProxy.java
for (Class<? super T> itf : allInterfaceClasses) { Iterator<Class<?>> iterator = interfaceClasses.iterator(); boolean addToSet = true; while (iterator.hasNext()) { Class<?> current = iterator.next(); if (current == itf || itf.isAssignableFrom(current)) { // Skip any super interface of the ones that are already included.
Registered: Fri Sep 05 12:43:10 UTC 2025 - Last Modified: Mon Aug 11 22:10:29 UTC 2025 - 4.5K bytes - Viewed (0) -
guava-testlib/src/com/google/common/testing/DummyProxy.java
for (Class<? super T> itf : allInterfaceClasses) { Iterator<Class<?>> iterator = interfaceClasses.iterator(); boolean addToSet = true; while (iterator.hasNext()) { Class<?> current = iterator.next(); if (current == itf || itf.isAssignableFrom(current)) { // Skip any super interface of the ones that are already included.
Registered: Fri Sep 05 12:43:10 UTC 2025 - Last Modified: Mon Aug 11 22:10:29 UTC 2025 - 4.5K bytes - Viewed (0) -
src/main/java/org/codelibs/core/lang/GenericsUtil.java
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); } return map; } /**
Registered: Fri Sep 05 20:58:11 UTC 2025 - Last Modified: Thu Jul 31 08:16:49 UTC 2025 - 23.4K bytes - Viewed (0) -
src/main/java/org/codelibs/core/beans/impl/BeanDescImpl.java
/** * Prepares the fields defined in the interface. * * @param interfaceClass * the target interface */ protected void setupFieldDescsByInterface(final Class<?> interfaceClass) { addFieldDescs(interfaceClass); final Class<?>[] interfaces = interfaceClass.getInterfaces(); for (final Class<?> intf : interfaces) { setupFieldDescsByInterface(intf);
Registered: Fri Sep 05 20:58:11 UTC 2025 - Last Modified: Thu Jun 19 09:12:22 UTC 2025 - 25.8K bytes - Viewed (1) -
guava/src/com/google/common/collect/ImmutableCollection.java
* these guarantees to be violated). * </ul> * * <h4>"Interfaces", not implementations</h4> * * <p>These are classes instead of interfaces to prevent external subtyping, but should be thought * of as interfaces in every important sense. Each public class such as {@link ImmutableSet} is a
Registered: Fri Sep 05 12:43:10 UTC 2025 - Last Modified: Thu Aug 07 16:05:33 UTC 2025 - 18.7K bytes - Viewed (0) -
android/guava/src/com/google/common/collect/ImmutableCollection.java
* these guarantees to be violated). * </ul> * * <h4>"Interfaces", not implementations</h4> * * <p>These are classes instead of interfaces to prevent external subtyping, but should be thought * of as interfaces in every important sense. Each public class such as {@link ImmutableSet} is a
Registered: Fri Sep 05 12:43:10 UTC 2025 - Last Modified: Thu Aug 07 16:05:33 UTC 2025 - 21.4K bytes - Viewed (0) -
src/test/java/org/codelibs/fess/validation/CustomSizeTest.java
assertEquals("Second payload should be AnotherTestPayload", AnotherTestPayload.class, multiAnnotation.payload()[1]); } // Additional test interfaces for multiple groups/payloads test private interface AnotherTestGroup { } private static class AnotherTestPayload implements Payload { } // Helper methods to get default values
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Tue Aug 19 14:09:36 UTC 2025 - 17.2K bytes - Viewed (0)