Advertisement
Guest User

Untitled

a guest
Jun 26th, 2019
73
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.53 KB | None | 0 0
  1. import a;
  2.  
  3. /**
  4. * This class does something and something
  5. * and does implements interface b,
  6. * (i want a hyperlink here, if pressed opens file b.java in IDE and cursor is at comments
  7. * before method n)
  8. */
  9.  
  10. public class a {
  11. //do something
  12. }
  13.  
  14. import k;
  15.  
  16. public interface b {
  17.  
  18. public j;
  19. public m;
  20. /**
  21. * This will be used when this and this will happen.
  22. */
  23. public n;
  24. }
  25.  
  26. /**
  27. * Bla bla bla
  28. * @see b#n
  29. */
  30. public class a
  31.  
  32. /**
  33. * {@link Class#method}
  34. */
  35. public void myMethod() {
  36. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement