Я использую IntelliJ Idea для Android devleopment. Есть ли способ, с помощью которого можно гиперссылки на два комментария в среде IDE. Например
Файл a.java
import a;
/**
* This class does something and something
* and does implements interface b,
* (i want a hyperlink here, if pressed opens file b.java in IDE and cursor is at comments
* before method n)
*/
public class a {
//do something
}
Файл b.java
import k;
public interface b {
public j;
public m;
/**
* This will be used when this and this will happen.
*/
public n;
}