Advertisement
Guest User

Untitled

a guest
Nov 30th, 2015
61
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Java 0.86 KB | None | 0 0
  1. package lab08;
  2.  
  3. import java.lang.annotation.ElementType;
  4. import java.lang.annotation.Retention;
  5. import java.lang.annotation.RetentionPolicy;
  6. import java.lang.annotation.Target;
  7.  
  8. @Retention(RetentionPolicy.RUNTIME)
  9. @Target(ElementType.METHOD)
  10. public @interface RentParser {
  11.  
  12. }
  13.  
  14.  
  15. package lab08;
  16.  
  17. import java.lang.annotation.ElementType;
  18. import java.lang.annotation.Target;
  19. import java.lang.annotation.Retention;
  20. import java.lang.annotation.RetentionPolicy;
  21.  
  22. @Retention(RetentionPolicy.RUNTIME)
  23. @Target(ElementType.METHOD)
  24. public @interface SellParser {
  25.  
  26. }
  27.  
  28.  
  29. package lab08;
  30.  
  31. import java.lang.annotation.ElementType;
  32. import java.lang.annotation.Target;
  33. import java.lang.annotation.Retention;
  34. import java.lang.annotation.RetentionPolicy;
  35.  
  36. @Retention(RetentionPolicy.RUNTIME)
  37. @Target(ElementType.TYPE)
  38. public @interface ClassifiedParserAdn {
  39.  
  40. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement