何らかの理由で、Javadoc がクラス記述の変更を検出しなくなりました。たとえば、A sample of Swing and reference types.
に変更した記述を持つクラスがありますがA sample of Swing and reference types. (Page 78)
、すべての Javadoc フォルダーを削除して再生成しても、まだ と表示されますA sample of Swing and reference types.
。Eclipse 内で Javadoc を使用していますが、正しい Javadoc プログラムが選択されています。以下は、javadoc の記述をまったく生成しない別のプログラムです。
package com.nathan2055.booksamples;
/**
* This program calculates 228 cents of change out.
* @author Nathan2055
*/
import static java.lang.System.out;
public class CalculatingChange {
/**
* @param args
*/
public static void main(String[] args) {
// 248 cents...
int total = 248;
// How many quarters?
int quarters = total / 25;
int whatsLeft = total % 25;
// How many dimes?
int dimes = whatsLeft / 10;
whatsLeft = whatsLeft % 10;
// How many nickels?
int nickels = whatsLeft / 5;
whatsLeft = whatsLeft % 5;
// How many are left?
int cents = whatsLeft;
// And then tell me.
out.println("From " + total + " cents you get:");
out.println(quarters + " quarters");
out.println(dimes + " dimes");
out.println(nickels + " nickels");
out.println(cents + " cents");
}
}