questionitem.java

来自「一个较好的java开发实例」· Java 代码 · 共 31 行

JAVA
31
字号
/* * QuestionItem.java * * Created on 2003年11月5日, 下午9:10 */package romulus;/** * This is the base interface of all the question items. * @author  Romulus * @version 1.0 */public interface QuestionItem extends RomulusNode{        /** fib type*/    public static final int FIB_TYPE = 0;        /** choice type*/    public static final int CHOICE_TYPE = 1;        /**     * Such method is used to check the correct of the question item.     */    public boolean isCorrect();        /** 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 + -
显示快捷键?