- Sort Score
- Num 10 results
- Language All
Results 1 - 2 of 2 for addReadableProperty (0.11 seconds)
-
build-logic/documentation/src/main/groovy/gradlebuild/docs/dsl/source/SourceMetaDataVisitor.java
String propName = name.substring(startName, startName + 1).toLowerCase(Locale.ROOT) + name.substring(startName + 1); PropertyMetaData property = getCurrentClass().addReadableProperty(propName, returnType, rawCommentText, methodMetaData); methodMetaData.getAnnotationTypeNames().forEach(property::addAnnotationTypeName); property.setReplacement(methodMetaData.getReplacement());
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 List<String> getImports() { return imports; } public void addImport(String importName) { imports.add(importName); } public PropertyMetaData addReadableProperty(String name, TypeMetaData type, String rawCommentText, MethodMetaData getterMethod) { PropertyMetaData property = getProperty(name); property.setType(type); property.setRawCommentText(rawCommentText);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)