Documented:
在默认的情况下在使用javadoc自动生成文档时,注释将被忽略掉。如果想在文档中也包含注释,必须使用Documented为文档注释。
Inherited:
父类的注释并不会被子类继承。如果要继承,就必须加上Inherited注释
package com.xdf.annotation;
@InheritedAnnotation(value="parent")
public abstract class AbstractParent{
@InheritedAnnotation(value ="Parent abstractMethod")
public abstract void abstractMethod();
@InheritedAnnotation(value = "Parent's doExtends")
public void doExtends(){
System.out.println("AbstractParent doExtends");
} |