import java.io.*; /** * Javadocテスト用クラス */ public class Sample09_02{ /** * サイズの設定 * @param width 幅 * @param height 高さ */ public void setSize(int width, int height){ } /** * ファイルへ書き込み */ public void writeToFile() throws FileNotFoundException{ } /** * ファイルから読み込み * @throws java.io.IOException 入出力関係 */ public void readFromFile() throws IOException, java.lang.SecurityException{ } }