从文章摘要这里
在package-info.java中:
@PackageLevelAnnotationpackage blammy; // package with a package level annotation.import blammy.annotation.PackageLevelAnnotation;
在PackageLevelAnnotation.java中
package blammy.annotation;@Retention(RetentionPolicy.CLASS)@Target(ElementType.PACKAGE)public @interface PackageLevelAnnotation{ // stuff as required.}
编辑:更多包级别信息。下面是在Java语言规格封装章链接:包
欢迎分享,转载请注明来源:内存溢出
评论列表(0条)