Advertisement
Guest User

Untitled

a guest
Jul 27th, 2017
55
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.36 KB | None | 0 0
  1. @Target(ElementType.METHOD)
  2. @Retention(RetentionPolicy.RUNTIME)
  3. public @interface Arg {
  4. String arg();
  5.  
  6. Permission[] allow() default metodo_que_está_anotado.getClass().getAnnotation(Cmd.class).allow();
  7. Permission[] disallow() default metodo_que_está_anotado.getClass().getAnnotation(Cmd.class).disallow();
  8.  
  9. String description();
  10. String usage();
  11. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement