- Sort Score
- Num 10 results
- Language All
Results 1 - 2 of 2 for getDeclaredMethodNames (0.1 seconds)
-
build-logic/documentation/src/main/groovy/gradlebuild/docs/dsl/docbook/ClassDocMethodsBuilder.java
if (methods.isEmpty()) { throw new RuntimeException(String.format("No metadata for method '%s.%s()'. Available methods: %s", classDoc.getName(), methodName, classDoc.getClassMetaData().getDeclaredMethodNames())); } for (MethodMetaData method : methods) { DocComment docComment = javadocConverter.parse(method, listener);
Created: Wed Dec 31 11:36:14 GMT 2025 - Last Modified: Wed Dec 09 08:14:05 GMT 2020 - 4.2K bytes - Click Count (0) -
build-logic/documentation/src/main/groovy/gradlebuild/docs/dsl/source/model/ClassMetaData.java
return new HashSet<PropertyMetaData>(declaredProperties.values()); } public Set<MethodMetaData> getDeclaredMethods() { return declaredMethods; } public Set<String> getDeclaredMethodNames() { Set<String> names = new HashSet<String>(); for (MethodMetaData declaredMethod : declaredMethods) { names.add(declaredMethod.getName()); } return names; }
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)