newvotevalidate.java

来自「struts2 spring2.5 hibernate3.0 eclipse投票」· Java 代码 · 共 27 行

JAVA
27
字号
package sunyang.vote.action.validators;

import com.opensymphony.xwork2.ActionSupport;

@SuppressWarnings("serial")
public class NewvoteValidate extends ActionSupport {
	private String title;
	private Integer contextcount;

	public Integer getContextcount() {
		return contextcount;
	}

	public void setContextcount(Integer contextcount) {
		this.contextcount = contextcount;
	}

	public String getTitle() {
		return title;
	}

	public void setTitle(String title) {
		this.title = title;
	}

}

⌨️ 快捷键说明

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