1 package org.apache.beehive.controls.api.versioning; 2 19 20 import java.lang.annotation.ElementType ; 21 import java.lang.annotation.Retention ; 22 import java.lang.annotation.RetentionPolicy ; 23 import java.lang.annotation.Target ; 24 25 33 @Retention (RetentionPolicy.RUNTIME) 34 @Target ({ElementType.TYPE, ElementType.FIELD}) 35 public @interface VersionRequired 36 { 37 46 int major(); 47 48 54 int minor() default -1; 55 } 56 | Popular Tags |