Как добавить ссылку на параметр метода в javadoc?

Есть ли способ добавить ссылки на один или несколько параметров метода из тела документации метода? Что-то вроде:

/**
 * 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)
{...}

Ответ 1

Насколько я могу судить после чтения документов для javadoc, такой функции нет.

Не используйте <code>foo</code>, как рекомендовано в других ответах; вы можете использовать {@code foo}. Это особенно полезно знать, когда вы ссылаетесь на общий тип, такой как {@code Iterator<String>} - уверен, выглядит лучше, чем <code>Iterator&lt;String&gt;</code>, не так ли?

Ответ 2

Как вы можете видеть в Java-источнике класса java.lang.String:

/**
 * Allocates a new <code>String</code> that contains characters from
 * a subarray of the character array argument. The <code>offset</code>
 * argument is the index of the first character of the subarray and
 * the <code>count</code> argument specifies the length of the
 * subarray. The contents of the subarray are copied; subsequent
 * modification of the character array does not affect the newly
 * created string.
 *
 * @param      value    array that is the source of characters.
 * @param      offset   the initial offset.
 * @param      count    the length.
 * @exception  IndexOutOfBoundsException  if the <code>offset</code>
 *               and <code>count</code> arguments index characters outside
 *               the bounds of the <code>value</code> array.
 */
public String(char value[], int offset, int count) {
    if (offset < 0) {
        throw new StringIndexOutOfBoundsException(offset);
    }
    if (count < 0) {
        throw new StringIndexOutOfBoundsException(count);
    }
    // Note: offset or count might be near -1>>>1.
    if (offset > value.length - count) {
        throw new StringIndexOutOfBoundsException(offset + count);
    }

    this.value = new char[count];
    this.count = count;
    System.arraycopy(value, offset, this.value, 0, count);
}

Ссылки на параметры окружены тегами <code></code>, что означает, что синтаксис Javadoc не предоставляет никакого способа сделать такую ​​вещь. (Я думаю, что String.class - хороший пример использования javadoc).

Ответ 3

Правильный способ обращения к параметру метода выглядит следующим образом:

введите описание изображения здесь

Ответ 4

Я думаю, вы могли бы написать свой собственный doclet или taglet для поддержки этого поведения.

Обзор тегов

Обзор Doclet