package edu.wtbu;标签:Target,value,注解,Documented,ElementType,class From: https://www.cnblogs.com/123456dh/p/17253263.html
import java.lang.annotation.*;
public class Demo01{
}
//Target:表示我们的注解可以用在哪些地方
@Target(value = {ElementType.METHOD,ElementType.TYPE})
//Retention:表示我们的注解在那些地方有效 runtime>class>source
@Retention(value = RetentionPolicy.RUNTIME)
//Documented:表示是否将我们的注解生产在javadoc中
@Documented
//定义一个注解
@interface MyAnnotation{
}