- Sort Score
- Num 10 results
- Language All
Results 1 - 4 of 4 for setInterfaces (0.09 seconds)
-
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) -
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) -
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); }
Created: Fri Apr 03 20:58:12 GMT 2026 - Last Modified: Thu Jul 31 08:16:49 GMT 2025 - 23.4K bytes - Click Count (0) -
src/main/java/jcifs/internal/smb2/multichannel/ChannelManager.java
} QueryNetworkInterfaceInfoResponse response = new QueryNetworkInterfaceInfoResponse(); response.decode(data, 0, data.length); for (NetworkInterfaceInfo info : response.getInterfaces()) { if (info.isUsableForChannel()) { remoteInterfaces.add(info); } } // Sort by score (best interfaces first)Created: Sun Apr 05 00:10:12 GMT 2026 - Last Modified: Thu Aug 21 11:13:46 GMT 2025 - 20K bytes - Click Count (0)