我正在使用 IntelliJ Idea 进行 Android 开发。有什么方法可以在 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;
}