callparameter.java
来自「EasyJWeb是基于java技术」· Java 代码 · 共 41 行
JAVA
41 行
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 + =
减小字号Ctrl + -
显示快捷键?