私はAndroid開発用のIntelliJIdeaを使用しています。IDEで2つのコメントをハイパーリンクできる方法はありますか?例えば
ファイル 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;
}