I want to easily create links to classes, methods, fields, etc. from within my Javadocs without having to type out the full expression e.g., {@link AllowAllHostnameVerifie
If you don't already have a Javadoc for the element you're documenting, press
Shift+Alt+J.
Using the AllowAllHostnameVerifier
example, from within the Javadoc comment where you'd like the link, use autocomplete: Type AAHV
then Ctrl+Space.
Select {@link AllowAllHostnameVerifier}
from the list of autocomplete options by pressing ↓ then Enter.
As an addition, you can also create links to methods by using {@link #
Ctrl+Space for methods in the current class, or by using {@link ClassName#
+ Control Space for methods in ClassName.