Eclipse の組み込み Java コード フォーマッタにコメントを無視させる方法はありますか? 実行すると、次のようになります。
/*
* PSEUDOCODE
* Read in user's string/paragraph
*
* Three cases are possible
* Case 1: foobar
* do case 1 things
* Case 2: fred hacker
* do case 2 things
* Case 3: cowboyneal
* do case 3 things
*
* In all cases, do some other thing
*/
これに:
/*
* PSEUDOCODE Read in user's string/paragraph
*
* Three cases are possible Case 1: foobar do case 1 things Case 2: fred
* hacker do case 2 things Case 3: cowboyneal do case 3 things
*
* In all cases, do some other thing
*/
Windows > Preferences > Java > Code Style > Formatter の設定をいじってみましたが、コメントの書式設定を維持するための設定が見つかりません。私はEclipse 3.4.0を使用しています。