Como referenciar um método em javadoc?

Como posso usar o@link tag para vincular a um método?

Eu quero muda

/**
 * 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()

par

/**
 * 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()

mas não sei como formatar o@link marca corretamente.

questionAnswers(3)

yourAnswerToTheQuestion