- Sort Score
- Num 10 results
- Language All
Results 1 - 3 of 3 for getAnnotationTypeNames (0.1 seconds)
-
build-logic/documentation/src/main/groovy/gradlebuild/docs/dsl/source/model/LanguageElement.java
* limitations under the License. */ package gradlebuild.docs.dsl.source.model; import java.util.List; public interface LanguageElement { String getRawCommentText(); List<String> getAnnotationTypeNames(); boolean isDeprecated(); boolean isIncubating();Created: Wed Dec 31 11:36:14 GMT 2025 - Last Modified: Wed Dec 09 08:14:05 GMT 2020 - 855 bytes - Click Count (0) -
build-logic/documentation/src/main/groovy/gradlebuild/docs/dsl/source/model/AbstractLanguageElement.java
return rawCommentText; } public void setRawCommentText(String rawCommentText) { this.rawCommentText = rawCommentText; } @Override public List<String> getAnnotationTypeNames() { return annotationNames; } public void addAnnotationTypeName(String annotationType) { annotationNames.add(annotationType); } @OverrideCreated: Wed Dec 31 11:36:14 GMT 2025 - Last Modified: Wed Dec 09 08:14:05 GMT 2020 - 2.9K bytes - Click Count (0) -
build-logic/documentation/src/main/groovy/gradlebuild/docs/dsl/source/SourceMetaDataVisitor.java
PropertyMetaData property = getCurrentClass().addReadableProperty(propName, returnType, rawCommentText, methodMetaData); methodMetaData.getAnnotationTypeNames().forEach(property::addAnnotationTypeName); property.setReplacement(methodMetaData.getReplacement()); return; } if (methodMetaData.getParameters().size() != 1) {
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)