Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 4 of 4 for setInterfaces (0.1 sec)

  1. 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;
        }
    
        /**
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Thu Aug 21 11:13:46 UTC 2025
    - 2.7K bytes
    - Viewed (0)
  2. guava/src/com/google/common/reflect/AbstractInvocationHandler.java

            // is efficient.
            || (Proxy.isProxyClass(arg.getClass())
                && Arrays.equals(arg.getClass().getInterfaces(), proxyClass.getInterfaces()));
      }
    Registered: Fri Sep 05 12:43:10 UTC 2025
    - Last Modified: Sun Dec 22 03:38:46 UTC 2024
    - 5.1K bytes
    - Viewed (0)
  3. src/test/java/jcifs/smb/SmbResourceLocatorInternalTest.java

            // Assert it's an interface and extends the right superinterface
            assertTrue(clazz.isInterface(), "Should be an interface");
            assertTrue(Arrays.asList(clazz.getInterfaces()).contains(SmbResourceLocator.class), "Should extend SmbResourceLocator");
    
            // shouldForceSigning(): boolean, no params, no checked exceptions
            Method m1 = clazz.getMethod("shouldForceSigning");
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Thu Aug 14 05:31:44 UTC 2025
    - 6.9K bytes
    - Viewed (0)
  4. src/test/java/jcifs/internal/dtyp/SecurityInfoTest.java

        }
    
        @Test
        @DisplayName("Test interface extends Decodable")
        void testExtendsDecodable() {
            Class<?>[] interfaces = SecurityInfo.class.getInterfaces();
            assertTrue(Arrays.asList(interfaces).contains(jcifs.Decodable.class), "SecurityInfo should extend Decodable interface");
        }
    
        @Test
        @DisplayName("Test all constant fields count")
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Thu Aug 14 07:14:38 UTC 2025
    - 7.5K bytes
    - Viewed (0)
Back to top