/* * NewAnnotationType.java * * Created on May 9, 2007, 4:02:10 PM * * To change this template, choose Tools | Template Manager * and open the template in the editor. */ package groovy.lang; import java.lang.annotation.ElementType; import java.lang.annotation.Retention; import java.lang.annotation.RetentionPolicy; import java.lang.annotation.Target; /** * * @author Danno */ @Retention(RetentionPolicy.SOURCE) @Target(ElementType.FIELD) public @interface BoundProperty { }