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

📄 actionmodel.java

📁 mvc框架
💻 JAVA
字号:
package com.strutslet.model;

import java.util.Map;

/**
 * 类说明:
 * @author dennis
 *
 */

public class ActionModel {
	private String path; // action的path

	private String className; // action的class

	private Map<String, ActionForward> forwards; // action的forward

	public ActionModel(){}
	
	public ActionModel(String path, String className,
			Map<String, ActionForward> forwards) {
		super();
		this.path = path;
		this.className = className;
		this.forwards = forwards;
	}

	public String getClassName() {
		return className;
	}

	public void setClassName(String className) {
		this.className = className;
	}

	public Map<String, ActionForward> getForwards() {
		return forwards;
	}

	public void setForwards(Map<String, ActionForward> forwards) {
		this.forwards = forwards;
	}

	public String getPath() {
		return path;
	}

	public void setPath(String path) {
		this.path = path;
	}
    
}

⌨️ 快捷键说明

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