📄 storable.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 + -