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.

[419 byte] By [johna997] at [2007-9-26 18:58:14]
# 1
have you tried@see A.A1#method1()@see A.A1#CONSTANT_A
teifion at 2007-7-3 3:58:43 > top of Java-index,Developer Tools,Debugging and Profiling Tool APIs...
# 2
Thanks. It works fine.
johna997 at 2007-7-3 3:58:43 > top of Java-index,Developer Tools,Debugging and Profiling Tool APIs...