コメントブロックから@seeを使用して別のオブジェクトのメソッドをリンクしたいのですが、
@ seeは、メソッドではなく、クラスをリンクするオプションのみを提供しています。
ハックとは何ですか?
public class A {
B bee;
/**
* Just invoking methodB on bee.
* @see B.methodB() <-- There
*/
public methodA() {
bee.methodB();
}
}
public class B {
/**
* The real stuff
*/
public methodB() {
// real stuff
}
}