Search Options

Display Count
Sort
Preferred Language
Advanced Search

Results 1 - 2 of 2 for getAnnotationTypeNames (0.11 seconds)

  1. 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)
  2. 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
    Created: Wed Dec 31 11:36:14 GMT 2025
    - Last Modified: Wed Dec 09 08:14:05 GMT 2020
    - 2.9K bytes
    - Click Count (0)
Back to Top