Guest User

Untitled

a guest
Feb 20th, 2017
55
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.29 KB | None | 0 0
  1. import java.lang.annotation.ElementType;
  2. import java.lang.annotation.Retention;
  3. import java.lang.annotation.RetentionPolicy;
  4. import java.lang.annotation.Target;
  5.  
  6. @Target({ElementType.FIELD, ElementType.TYPE})
  7. @Retention(RetentionPolicy.RUNTIME)
  8. public @interface MyAnno {
  9. String value();
  10. }
Add Comment
Please, Sign In to add comment