¿Cómo hacer referencia a un método en javadoc?

¿Cómo puedo usar la@link etiqueta para vincular a un método?

Quiero cambia

/**
 * Returns the Baz object owned by the Bar object owned by Foo owned by this.
 * A convenience method, equivalent to getFoo().getBar().getBaz()
 * @return baz
 */
public Baz fooBarBaz()

/**
 * Returns the Baz object owned by the Bar object owned by Foo owned by this.
 * A convenience method, equivalent to {@link getFoo()}.{@link getBar()}.{@link getBaz()}
 * @return baz
 */
public Baz fooBarBaz()

pero no sé cómo formatear el@link etiqueta correctamente.

Respuestas a la pregunta(3)

Su respuesta a la pregunta