- Sort Score
- Num 10 results
- Language All
Results 1 - 10 of 16 for setInterfaces (0.23 seconds)
-
src/main/java/jcifs/internal/smb2/ioctl/QueryNetworkInterfaceInfoResponse.java
* * @return list of network interface information */ public List<NetworkInterfaceInfo> getInterfaces() { return interfaces; } /** * Set the list of network interfaces * * @param interfaces list of network interface information */ public void setInterfaces(List<NetworkInterfaceInfo> interfaces) { this.interfaces = interfaces; } /**Created: Sun Apr 05 00:10:12 GMT 2026 - Last Modified: Thu Aug 21 11:13:46 GMT 2025 - 2.7K bytes - Click Count (0) -
android/guava/src/com/google/common/reflect/AbstractInvocationHandler.java
// is efficient. || (Proxy.isProxyClass(arg.getClass()) && Arrays.equals(arg.getClass().getInterfaces(), proxyClass.getInterfaces())); }Created: Fri Apr 03 12:43:13 GMT 2026 - Last Modified: Sun Dec 22 03:38:46 GMT 2024 - 5.1K bytes - Click Count (0) -
build-logic/documentation/src/main/groovy/gradlebuild/docs/dsl/docbook/ClassDocSuperTypeBuilder.java
for (String interfaceName : interfaceNames) { ClassDoc superInterface = model.findClassDoc(interfaceName); if (superInterface != null) { classDoc.getInterfaces().add(superInterface); superInterface.addSubClass(classDoc); } } }
Created: Wed Apr 01 11:36:16 GMT 2026 - Last Modified: Tue Feb 18 17:01:38 GMT 2025 - 2.1K bytes - Click Count (0) -
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); }Created: Fri Apr 03 12:43:13 GMT 2026 - Last Modified: Sat Mar 07 02:20:33 GMT 2026 - 1.9K bytes - Click Count (0) -
src/main/java/org/codelibs/core/beans/impl/BeanDescImpl.java
* the target interface */ protected void setupFieldDescsByInterface(final Class<?> interfaceClass) { addFieldDescs(interfaceClass); final Class<?>[] interfaces = interfaceClass.getInterfaces(); for (final Class<?> intf : interfaces) { setupFieldDescsByInterface(intf); } } /** * Prepares the fields defined in the class. *Created: Fri Apr 03 20:58:12 GMT 2026 - Last Modified: Thu Jun 19 09:12:22 GMT 2025 - 25.8K bytes - Click Count (1) -
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); }Created: Fri Apr 03 12:43:13 GMT 2026 - Last Modified: Sat Mar 07 02:20:33 GMT 2026 - 1.9K bytes - Click Count (0) -
android/guava-tests/test/com/google/common/util/concurrent/ForwardingObjectTester.java
*/ static <T extends ForwardingObject> void testForwardingObject(Class<T> forwarderClass) { List<Class<?>> interfaces = new ArrayList<>(Arrays.asList(forwarderClass.getInterfaces())); // Desugaring may introduce AutoCloseable as an extra interface. interfaces.remove(AutoCloseable.class); @SuppressWarnings("unchecked") // super interface type of T
Created: Fri Apr 03 12:43:13 GMT 2026 - Last Modified: Mon Mar 16 22:45:21 GMT 2026 - 2.8K bytes - Click Count (0) -
guava-tests/test/com/google/common/util/concurrent/ForwardingObjectTester.java
*/ static <T extends ForwardingObject> void testForwardingObject(Class<T> forwarderClass) { List<Class<?>> interfaces = new ArrayList<>(Arrays.asList(forwarderClass.getInterfaces())); // Desugaring may introduce AutoCloseable as an extra interface. interfaces.remove(AutoCloseable.class); @SuppressWarnings("unchecked") // super interface type of T
Created: Fri Apr 03 12:43:13 GMT 2026 - Last Modified: Mon Mar 16 22:45:21 GMT 2026 - 2.8K bytes - Click Count (0) -
android/guava/src/com/google/common/reflect/TypeToken.java
@Override Class<?> getRawType(Class<?> type) { return type; } @Override Iterable<? extends Class<?>> getInterfaces(Class<?> type) { return Arrays.asList(type.getInterfaces()); } @Override @Nullable Class<?> getSuperclass(Class<?> type) { return type.getSuperclass(); } };Created: Fri Apr 03 12:43:13 GMT 2026 - Last Modified: Thu Jan 29 22:14:05 GMT 2026 - 53.8K bytes - Click Count (0) -
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 upcastCreated: Sun Apr 05 03:35:12 GMT 2026 - Last Modified: Sat Apr 05 11:52:05 GMT 2025 - 13.5K bytes - Click Count (0)