blob: cd48468382cc3342d9a5d760bff21b38e7cfff0d [file] [log] [blame]
Stuart McCullochf3173222012-06-07 21:57:32 +00001package aQute.bnd.annotation;
2
3import java.lang.annotation.*;
4
5@Retention(RetentionPolicy.CLASS)
6@Target(ElementType.PACKAGE)
7public @interface Export {
Stuart McCulloch4482c702012-06-15 13:27:53 +00008 String MANDATORY = "mandatory";
9 String OPTIONAL = "optional";
10 String USES = "uses";
11 String EXCLUDE = "exclude";
12 String INCLUDE = "include";
Stuart McCullochf3173222012-06-07 21:57:32 +000013
Stuart McCulloch4482c702012-06-15 13:27:53 +000014 String[] mandatory() default "";
Stuart McCullochf3173222012-06-07 21:57:32 +000015
Stuart McCulloch4482c702012-06-15 13:27:53 +000016 String[] optional() default "";
Stuart McCullochf3173222012-06-07 21:57:32 +000017
Stuart McCulloch4482c702012-06-15 13:27:53 +000018 Class< ? >[] exclude() default Object.class;
Stuart McCullochf3173222012-06-07 21:57:32 +000019
Stuart McCulloch4482c702012-06-15 13:27:53 +000020 Class< ? >[] include() default Object.class;
Stuart McCullochf3173222012-06-07 21:57:32 +000021}