1 package spoon.examples.bound.annotation;2 3 import java.lang.annotation.ElementType ;4 import java.lang.annotation.Target ;5 6 @Target (ElementType.PARAMETER)7 public @interface Bound {8 9 double NONE=-123456;10 11 double max() default NONE;12 double min() default NONE;13 14 }15