nametypebean.java.svn-base

来自「华为短信网关实现的功能,包括服务器端和客户端代码」· SVN-BASE 代码 · 共 26 行

SVN-BASE
26
字号
package com.fetion.cmpp.common.util;

public class NameTypeBean {
	private String name;
	private Class  type;
	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 NameTypeBean(String name, Class type) {
		super();
		this.name = name;
		this.type = type;
	}
	
	
}

⌨️ 快捷键说明

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