1 package org.apache.beehive.controls.api.properties; 2 19 20 import java.lang.annotation.Annotation ; 21 import java.lang.annotation.ElementType ; 22 import java.lang.annotation.Target ; 23 import java.lang.annotation.Retention ; 24 import java.lang.annotation.RetentionPolicy ; 25 import java.lang.reflect.Method ; 26 import java.util.HashMap ; 27 28 31 @PropertySet 32 @Target ( {ElementType.TYPE, ElementType.FIELD} ) 33 @Retention ( RetentionPolicy.RUNTIME ) 34 public @interface BaseProperties 35 { 36 41 String controlImplementation() default ""; 42 } 43 | Popular Tags |