13

私は次のようにビジネスロジック内に多くのコメントを書きました。

/**
 * Do some important stuff.
 * @param pDog
 * @param pAllDogTraining
 * @return
 */
@Overwrite
public Map<DogId, Dog> doEvaluateAllDog(final Dog pDog, final Collection<DogTraining> pAllDogTraining) {
final Map<DogId, Dog> lAllDogBad = new HashMap<DogId, Dog>();
final List<DogTraining> lAllDogTraining = new ArrayList<DogTraining>(pAllDogTraining);

/**
 * Remove deleted entries.
 * Detailed description
 */
removeDeletetTrainings(lAllDogTraining);

/**
 * Set the priority for each training
 *  - bad dogs
 *  - nice dogs
 *  - unknown dogs
 * Detailed description
 */
Collections.sort(lAllDogTraining, new DogTrainingComparator());

// Iterate over training elements and set the conflict state
for(.....

私の質問は、javadocツールは私のメソッドブロック内のドキュメントコメントも認識しますか?近い将来、技術文書を提供し、プロジェクトのJavaDocがその一部になる予定です。

4

1 に答える 1

17

ツールはjavadocメソッドブロック内のドキュメントコメントも認識しますか?

いいえ。

/**JavaDocコメントは、クラス宣言またはクラスのメソッドまたは属性の直前にある複数行コメントです。

于 2013-03-19T10:06:34.817 に答える