- Sort Score
- Result 10 results
- Languages All
Results 1 - 5 of 5 for getSupertype (0.07 sec)
-
guava-tests/test/com/google/common/reflect/SubtypeTester.java
return method.getGenericParameterTypes()[0]; } @SuppressWarnings({"rawtypes", "unchecked"}) private static Type getSupertype(Type type, Class<?> superclass) { Class rawType = superclass; return TypeToken.of(type).getSupertype(rawType).getType(); } private static Type getSubtype(Type type, Class<?> subclass) { return TypeToken.of(type).getSubtype(subclass).getType(); }
Registered: Fri Nov 01 12:43:10 UTC 2024 - Last Modified: Wed Apr 19 19:24:36 UTC 2023 - 6.1K bytes - Viewed (0) -
android/guava-tests/test/com/google/common/reflect/SubtypeTester.java
return method.getGenericParameterTypes()[0]; } @SuppressWarnings({"rawtypes", "unchecked"}) private static Type getSupertype(Type type, Class<?> superclass) { Class rawType = superclass; return TypeToken.of(type).getSupertype(rawType).getType(); } private static Type getSubtype(Type type, Class<?> subclass) { return TypeToken.of(type).getSubtype(subclass).getType(); }
Registered: Fri Nov 01 12:43:10 UTC 2024 - Last Modified: Wed Apr 19 19:24:36 UTC 2023 - 6.1K bytes - Viewed (0) -
build-logic/documentation/src/main/groovy/gradlebuild/docs/dsl/docbook/model/ClassDoc.groovy
Collection<ClassExtensionDoc> getClassExtensions() { return classExtensions } void addClassExtension(ClassExtensionDoc extensionDoc) { classExtensions.add(extensionDoc) } List<ClassDoc> getSuperTypes() { return superClass == null ? interfaces : [superClass] + interfaces } Element getClassSection() { return classSection } Element getPropertiesTable() { return propertiesTable }
Registered: Wed Nov 06 11:36:14 UTC 2024 - Last Modified: Wed Dec 09 08:14:05 UTC 2020 - 6.2K bytes - Viewed (0) -
build-logic/documentation/src/main/groovy/gradlebuild/docs/dsl/docbook/ClassDocMethodsBuilder.java
classDoc.addClassMethod(methodDoc); signatures.add(method.getOverrideSignature()); } } } for (ClassDoc supertype : classDoc.getSuperTypes()) { for (MethodDoc method: supertype.getClassMethods()){ if (signatures.add(method.getMetaData().getOverrideSignature())) { classDoc.addClassMethod(method); }
Registered: Wed Nov 06 11:36:14 UTC 2024 - Last Modified: Wed Dec 09 08:14:05 UTC 2020 - 4.2K bytes - Viewed (0) -
build-logic/documentation/src/main/groovy/gradlebuild/docs/dsl/docbook/ClassDocPropertiesBuilder.java
} //adding the properties from the super class onto the inheriting class Map<String, PropertyDoc> props = new TreeMap<String, PropertyDoc>(); List<ClassDoc> superTypes = classDoc.getSuperTypes(); for (ClassDoc superType : superTypes) { LOG.info("Getting properties for {}", superType.getName()); for (PropertyDoc propertyDoc : superType.getClassProperties()) {
Registered: Wed Nov 06 11:36:14 UTC 2024 - Last Modified: Wed Dec 09 08:14:05 UTC 2020 - 6.2K bytes - Viewed (0)