qtype.java

来自「一个在线学习系统的服务端SERVLET程序」· Java 代码 · 共 18 行

JAVA
18
字号
package eols.bean.test;
/**
 * A class wrapping question type information which can be used to
 * describe the question type of each added question.
 *
 * @author Fasheng Qiu
 *
 */
public class QType {

	/** Choice question */
	public static final int CHOICE = 0;

	/** Blank filling question*/
	public static final int FILL_BLANK = 1;

}

⌨️ 快捷键说明

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