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

📄 addquoteform.java

📁 泽风留言本,非常小巧好用的东西啊.请多多照顾.
💻 JAVA
字号:
/**
 *  作者: 佟劲纬   创建日期: 2006-2-1
 *	
 *	QQ: 532443423 Email: TJW_7@163.com
 */
package com.tjw.guestbook.form;

import javax.servlet.http.*;

import org.apache.struts.action.*;

/**
 * 
 */
public class AddQuoteForm extends ActionForm {

	private String id = null;

	private String content = null;

	public void setId(String id) {
		this.id = id;
	}

	public String getId() {
		return this.id;
	}

	public void setContent(String content) {
		this.content = content;
	}

	public String getContent() {
		return this.content;
	}

	public void reset(ActionMapping mapping, HttpServletRequest request) {
		id = null;
		content = null;
	}

	public ActionErrors validate(ActionMapping mapping,
			HttpServletRequest request) {

		ActionErrors errors = new ActionErrors();

		if (id == null || id.length() < 1) {
			errors.add("idError", new ActionMessage("error.id"));
		}

		if (content == null || content.length() < 1) {
			errors.add("contentError", new ActionMessage("error.content.null"));
		} else if (content.length() > 500) {
			errors.add("contentError", new ActionMessage("error.content.max"));
		}

		return errors;
	}
}

⌨️ 快捷键说明

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