⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 storable.java

📁 JHotDraw学习过程中对数组的测试程序haha 学习过程中对数组的测试程序
💻 JAVA
字号:
/* * @(#)Storable.java 5.1 * */package CH.ifa.draw.util;import java.io.*;/** * Interface that is used by StorableInput and StorableOutput * to flatten and resurrect objects. Objects that implement * this interface and that are resurrected by StorableInput * have to provide a default constructor with no arguments. * * @see StorableInput * @see StorableOutput */public interface Storable {    /**     * Writes the object to the StorableOutput.     */    public void write(StorableOutput dw);    /**     * Reads the object from the StorableInput.     */    public void read(StorableInput dr) throws IOException;}

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -