11

私はこのJavaコードを持っています:

/**
 * Initializes the Levenshtein Object with the two given words.
 * 
 * @param word1 first word
 * @param word2 second word
 */
public Levenshtein(String word1, String word2) {
    this.word1 = "." + word1.toLowerCase();
    this.word2 = "." + word2.toLowerCase();
    this.distance = new int[this.word2.length()][this.word1
            .length()];
}

Ctrl + Shift + Fを押すと、次のようになります。

/**
 * Initializes the Levenshtein Object with the two given words.
 * 
 * @param word1
 *            first word
 * @param word2
 *            second word
 */
public Levenshtein(String word1, String word2) {
    this.word1 = "." + word1.toLowerCase();
    this.word2 = "." + word2.toLowerCase();
    this.distance = new int[this.word2.length()][this.word1
            .length()];
}

なぜ日食はこの乳母車のラインラッピングを行うのですか?(JavaDoc用に完全に切り替えることなく)どのように切り替えることができますか?

これらは、私が現在eclipse 3.5.2(Galileo)で使用しているフォーマッター設定です。

4

1 に答える 1

17

ウィンドウ>設定>Java>コードスタイル>フォーマッタ
(編集)>コメント
チェックボックス:@paramタグの後の新しい行

Juno(4.2)で見られます。

于 2012-12-04T12:14:23.323 に答える