actionmapping.java

来自「本人大学时大型作业用JAVA做的一个 BBS系统 模式MVC 非struts版 」· Java 代码 · 共 40 行

JAVA
40
字号
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 + =
减小字号Ctrl + -
显示快捷键?