/** * Javadocテスト用クラス */ public class Sample03{ /** * 幅と高さを保存します */ public int width, height; /** * サイズの設定 * @param width 幅 * @param height 高さ */ public void setSize(int width, int height){ } }