- Sort Score
- Result 10 results
- Languages All
Results 1 - 2 of 2 for getAnnotationTypeNames (0.32 sec)
-
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();
Registered: Wed Nov 06 11:36:14 UTC 2024 - Last Modified: Wed Dec 09 08:14:05 UTC 2020 - 855 bytes - Viewed (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); } @Override
Registered: Wed Nov 06 11:36:14 UTC 2024 - Last Modified: Wed Dec 09 08:14:05 UTC 2020 - 2.9K bytes - Viewed (0)