我想使用注释块中的@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
}
}