I am trying to create javadoc for my client library. In MyOtherClass, I put the the below @see , and get warnings. MyOtherClass and MyClass both are in different packages, in the same project.
@see MyClass#Constructor(Type1 param1, Type2 param2)
warning - Tag @see: reference not found: MyClass#Constructor(Type1 param1, Type2 param2)
Then I tried
@see MyClass#MyClass(Type1 param1, Type2 param2)
warning - Tag @see: reference not found: MyClass#MyClass(Type1 param1, Type2 param2)
Also tried
@see #MyClass(Type1 param1, Type2 param2)
warning - Tag @see: reference not found: MyOtherClass#MyClass(Type1 param1, Type2 param2)
I know I am missing something real silly here.