- Sort Score
- Num 10 results
- Language All
Results 1 - 10 of 10 for IsInterface (0.07 seconds)
The search processing time has exceeded the limit. The displayed results may be partial.
-
build-logic/documentation/src/main/groovy/gradlebuild/docs/dsl/source/SourceMetaDataVisitor.java
} @Override public void visit(ClassOrInterfaceDeclaration classDeclaration, ClassMetaDataRepository<ClassMetaData> repository) { visitTypeDeclaration(classDeclaration, repository, classDeclaration.isInterface() ? MetaType.INTERFACE : MetaType.CLASS, () -> { visitExtendedTypes(classDeclaration); visitImplementedTypes(classDeclaration); super.visit(classDeclaration, repository); });Created: Wed Dec 31 11:36:14 GMT 2025 - Last Modified: Mon Aug 19 15:07:24 GMT 2024 - 11.8K bytes - Click Count (0) -
build-logic/documentation/src/main/groovy/gradlebuild/docs/dsl/source/model/ClassMetaData.java
} public String getSimpleName() { return StringUtils.substringAfterLast(className, "."); } public String getPackageName() { return packageName; } public boolean isInterface() { return metaType == MetaType.INTERFACE; } public boolean isGroovy() { return isGroovy; } public boolean isEnum() { return metaType == MetaType.ENUM; }Created: Wed Dec 31 11:36:14 GMT 2025 - Last Modified: Wed May 21 06:20:45 GMT 2025 - 10.1K bytes - Click Count (0) -
src/main/java/org/codelibs/core/beans/impl/BeanDescImpl.java
} } /** * Prepares the fields. */ protected void setupFieldDescs() { if (beanClass.isInterface()) { setupFieldDescsByInterface(beanClass); } else { setupFieldDescsByClass(beanClass); } } /** * Prepares the fields defined in the interface.Created: Sat Dec 20 08:55:33 GMT 2025 - Last Modified: Thu Jun 19 09:12:22 GMT 2025 - 25.8K bytes - Click Count (1) -
android/guava-testlib/src/com/google/common/testing/AbstractPackageSanityTests.java
Created: Fri Dec 26 12:43:10 GMT 2025 - Last Modified: Tue May 13 17:27:14 GMT 2025 - 17.8K bytes - Click Count (0) -
src/test/java/jcifs/SmbResourceTest.java
assertNotNull(resource.getLocator(), "Should have resource locator for SMB addressing"); // Verify interface provides SMB-specific functionality assertTrue(SmbResource.class.isInterface(), "Should be an interface"); assertTrue(AutoCloseable.class.isAssignableFrom(SmbResource.class), "Should be closeable for resource management"); } @Test
Created: Sat Dec 20 13:44:44 GMT 2025 - Last Modified: Thu Aug 14 05:31:44 GMT 2025 - 35K bytes - Click Count (0) -
guava-testlib/src/com/google/common/testing/AbstractPackageSanityTests.java
Created: Fri Dec 26 12:43:10 GMT 2025 - Last Modified: Tue May 13 17:27:14 GMT 2025 - 17.9K bytes - Click Count (0) -
guava-testlib/src/com/google/common/testing/NullPointerTester.java
@SuppressWarnings("unchecked") // returns default for both F and T T defaultConverter = (T) defaultConverter(convertFromType, convertToType); return defaultConverter; } if (type.getRawType().isInterface()) { return newDefaultReturningProxy(type); } return null; } private <F, T> Converter<F, T> defaultConverter( TypeToken<F> convertFromType, TypeToken<T> convertToType) {Created: Fri Dec 26 12:43:10 GMT 2025 - Last Modified: Mon Jul 14 14:44:08 GMT 2025 - 25.4K bytes - Click Count (0) -
android/guava-testlib/src/com/google/common/testing/FreshValueGenerator.java
} return invokeGeneratorMethod(generate, args.toArray()); } return defaultGenerate(rawType); } private <T> @Nullable T defaultGenerate(Class<T> rawType) { if (rawType.isInterface()) { // always create a new proxy return newProxy(rawType); } return ArbitraryInstances.get(rawType); } private <T> T newProxy(Class<T> interfaceType) {Created: Fri Dec 26 12:43:10 GMT 2025 - Last Modified: Tue May 13 17:27:14 GMT 2025 - 28.1K bytes - Click Count (0) -
api/go1.5.txt
pkg go/types, func ExprString(ast.Expr) string pkg go/types, func Id(*Package, string) string pkg go/types, func Identical(Type, Type) bool pkg go/types, func Implements(Type, *Interface) bool pkg go/types, func IsInterface(Type) bool pkg go/types, func LookupFieldOrMethod(Type, bool, *Package, string) (Object, []int, bool) pkg go/types, func MissingMethod(Type, *Interface, bool) (*Func, bool) pkg go/types, func NewArray(Type, int64) *Array
Created: Tue Dec 30 11:13:12 GMT 2025 - Last Modified: Thu Jul 30 21:14:09 GMT 2015 - 46.6K bytes - Click Count (0) -
guava/src/com/google/common/net/InetAddresses.java
} try { NetworkInterface asInterface = NetworkInterface.getByName(scope); if (asInterface == null) { throw formatIllegalArgumentException("No such interface: '%s'", scope); } return Inet6Address.getByAddress( v6Address.getHostAddress(), v6Address.getAddress(), asInterface); } catch (SocketException | UnknownHostException e) {Created: Fri Dec 26 12:43:10 GMT 2025 - Last Modified: Wed Feb 19 21:24:11 GMT 2025 - 47.4K bytes - Click Count (0)