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

📄 actionmapping.java

📁 本人大学时大型作业用JAVA做的一个 BBS系统 模式MVC 非struts版 开发工具JCreator Pro 数据库SQL2
💻 JAVA
字号:
package domain;
public class ActionMapping implements java.io.Serializable
{
	private String path;
	private String type;
	private String uri;
	public ActionMapping()
	{
	}
	public ActionMapping(String path,String type,String uri)
	{
		this.path=path;
		this.type=type;
		this.uri=uri;
	}	
	public void setPath(String path) 
	{
		this.path = path; 
	}
	public void setType(String type) 
	{
		this.type = type; 
	}
	public void setUri(String uri) 
	{
		this.uri = uri; 
	}
	public String getPath() 
	{
		return (this.path); 
	}
	public String getType() 
	{
		return (this.type); 
	}
	public String getUri() 
	{
		return (this.uri); 
	}
}

⌨️ 快捷键说明

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