📄 callparameter.java.svn-base
字号:
package com.easyjf.web.ajax;
/**
* JS远程脚本调用参数封装
* @author 大峡
*
*/
public class CallParameter {
private int index;
private Class type;
private String name;
private java.util.Map propetys=new java.util.HashMap();
public int getIndex() {
return index;
}
public void setIndex(int index) {
this.index = index;
}
public String getName() {
return name;
}
public void setName(String name) {
this.name = name;
}
public Class getType() {
return type;
}
public void setType(Class type) {
this.type = type;
}
public void addProperty(String name,Object value)
{
this.propetys.put(name, value);
}
public java.util.Map getPropetys() {
return propetys;
}
public void setPropetys(java.util.Map propetys) {
this.propetys = propetys;
}
}
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -