Use @see to link to specific method or constant
I have
package A, which class A1 that contain method1 and CONSTANT_A.
package B, which class B1 that contain method2.
In method2, I want to provide a specific link to method1 and constantA. I wrote
@see A.A1.method1()
@see A.A1.CONSTANT_A
It didn't work. Is there a way to provide a specific link to a mehtod and constant? I saw the Java API does that.
Thanks.

