Guest User

Untitled

a guest
Jun 20th, 2018
68
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.30 KB | None | 0 0
  1. package test.annotation.example;
  2.  
  3. import java.lang.annotation.*;
  4. import java.lang.reflect.*;
  5. import java.lang.util.*;
  6.  
  7. @Retention(RetentionPolicy.RUNTIME)
  8. @Target({ElementType.TYPE})
  9. public @interface Documentation {
  10. String description() default "";
  11. String parameters() default "";
  12. String return();
  13. }
Add Comment
Please, Sign In to add comment