romulusnode.java

来自「java案例开发一书的源代码」· Java 代码 · 共 21 行

JAVA
21
字号
/* * RomulusNode.java * * Created on 2003年11月6日, 上午11:03 */package romulus;/** * The interface used to define the data structure. * All the data structure used in Romulus is its subclass. * @author  Romulus * @version 1.0 */public interface RomulusNode extends java.io.Serializable{    /** The method used to accept the Visitor to do something.*/    public void Accept(Visitor v) throws java.sql.SQLException, RomulusException;    }

⌨️ 快捷键说明

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