built-in annotations, defined in java.lang:
@Override
@Deprecated
@SuppressWarnings
The meta-annotations are for annotating annotations:
@Target(ElementType.METHOD) @Retention(RetentionPolicy.RUNTIME) public @interface Test {} ///:~
原文:http://www.cnblogs.com/thlzhf/p/3952229.html