blob: f089b750f35d6be88e84437a12e274e3758fea05 [file] [log] [blame]
Stuart McCulloch26e7a5a2011-10-17 10:31:43 +00001package aQute.bnd.annotation.component;
2
3public @interface Attribute {
4 class C {}
5
6 String name() default "";
7 String description() default "";
8 String[] options();
9
10}