工具主页:http://www.spket.com/
可以作为eclipse一个插件使用
1、安装方法
update url: http://www.spket.com/update/
直接上http://www.spket.com/主页下载
2、配置方法
参考http://www.spket.com/prototypejs.html prototype框架的设置,其他的jquery等框架类似
3、编写例子:
- /**
- * 问题选项
- *
- * @class
- */
- function QOption(){
- /**
- * 是否客观题
- * @type Number
- */
- this.isImpersonal = 1;
- /**
- * 选项序号
- * @type String
- */
- this.optionOrderNo = null;
- /**
- * 选项分数
- * @type Number
- */
- this.optionMark = 0;
- /**
- * 是否标准答案
- * @type Number
- */
- this.isRightKey = 0;
- /**
- * 选项内容
- * @type String
- */
- this.optionContent = null;
- /**
- * 选项寓意
- * @type String
- */
- this.optionImplication = null;
- };
能提供完整的注释、提示功能。
更多功能慢慢品味中.......