본문 바로가기

명사 美 비격식 (무리 중에서) 아주 뛰어난[눈에 띄는] 사람[것]

JAVA

Annotation - @Documented

@Documented
애너테이션에 대한 문서를 생성할 때 해당 애너테이션 정보를 포함시키도록 지정한다.
즉, 해당 애너테이션을 사용하는 클래스나 메서드의 문서화에 애너테이션 정보가 포함됩니다.

import java.lang.annotation.Documented;

@Documented
@interface MyAnnotation {
 // 애너테이션 내용
}

'JAVA' 카테고리의 다른 글

Annotation - @Retention  (0) 2024.02.15
Annotation - @Inherited  (0) 2024.02.15
Annotation - @Target  (0) 2024.02.15
Annotation - @Native  (0) 2024.02.15
Annotation - @FunctionalInterface  (0) 2024.02.15