私はこの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)で使用しているフォーマッター設定です。