Есть ли способ добавить ссылки на один или несколько параметров метода из тела документации метода? Что-то вроде:
/**
* When {@paramref a} is null, we rely on b for the discombobulation.
*
* @param a this is one of the parameters
* @param b another param
*/
void foo(String a, int b)
{...}