⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 callparameter.java

📁 一个简单的java邮件系统源码
💻 JAVA
字号:
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 + -