1 package spoon.examples.fieldaccess.annotation;2 3 import java.lang.annotation.ElementType ;4 import java.lang.annotation.Target ;5 6 @Target (ElementType.FIELD)7 public @interface Access {8 }9