I\'m trying to generate some Javadocs with Android Studio. I\'m referring with {@link #method()} a method in the same class as the link but I still get a refe
{@link #method()}
refe
The format for the javaDoc lint tag in Android Studio is:
{@link package.class#member label}
Here is more information on javaDoc tags.