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

📄 masterform.java

📁 留言簿架构 oracle 9i + jsp + struts 留言簿基本功能: 1 、客人签写留言 2 、基本的UBB支持
💻 JAVA
字号:
/*
 * Generated by MyEclipse Struts
 * Template path: templates/java/JavaClass.vtl
 */
package com.guestbook.form;

import org.apache.struts.action.ActionForm;

/** 
 * MyEclipse Struts
 * Creation date: 09-23-2007
 * 
 * XDoclet definition:
 * @struts.form name="MasterForm"
 */
public class MasterForm extends ActionForm {
	/*
	 * Generated fields
	 */

	/** nickname property */
	private String nickname;

	/** oid property */
	private String oid;

	/** homepage property */
	private String homepage;

	/** explain property */
	private String explain;

	/** mail property */
	private String mail;

	/** msn property */
	private String msn;

	/** qq property */
	private String qq;

	/** icq property */
	private String icq;

	/** id property */
	private int id;

	/*
	 * Generated Methods
	 */

	/** 
	 * Returns the nickname.
	 * @return String
	 */
	public String getNickname() {
		return nickname;
	}

	/** 
	 * Set the nickname.
	 * @param nickname The nickname to set
	 */
	public void setNickname(String nickname) {
		this.nickname = nickname;
	}

	/** 
	 * Returns the oid.
	 * @return String
	 */
	public String getOid() {
		return oid;
	}

	/** 
	 * Set the oid.
	 * @param oid The oid to set
	 */
	public void setOid(String oid) {
		this.oid = oid;
	}

	/** 
	 * Returns the homepage.
	 * @return String
	 */
	public String getHomepage() {
		return homepage;
	}

	/** 
	 * Set the homepage.
	 * @param homepage The homepage to set
	 */
	public void setHomepage(String homepage) {
		this.homepage = homepage;
	}

	/** 
	 * Returns the explain.
	 * @return String
	 */
	public String getExplain() {
		return explain;
	}

	/** 
	 * Set the explain.
	 * @param explain The explain to set
	 */
	public void setExplain(String explain) {
		this.explain = explain;
	}

	/** 
	 * Returns the mail.
	 * @return String
	 */
	public String getMail() {
		return mail;
	}

	/** 
	 * Set the mail.
	 * @param mail The mail to set
	 */
	public void setMail(String mail) {
		this.mail = mail;
	}

	/** 
	 * Returns the msn.
	 * @return String
	 */
	public String getMsn() {
		return msn;
	}

	/** 
	 * Set the msn.
	 * @param msn The msn to set
	 */
	public void setMsn(String msn) {
		this.msn = msn;
	}

	/** 
	 * Returns the qq.
	 * @return String
	 */
	public String getQq() {
		return qq;
	}

	/** 
	 * Set the qq.
	 * @param qq The qq to set
	 */
	public void setQq(String qq) {
		this.qq = qq;
	}

	/** 
	 * Returns the icq.
	 * @return String
	 */
	public String getIcq() {
		return icq;
	}

	/** 
	 * Set the icq.
	 * @param icq The icq to set
	 */
	public void setIcq(String icq) {
		this.icq = icq;
	}

	/** 
	 * Returns the id.
	 * @return String
	 */
	public int getId() {
		return id;
	}

	/** 
	 * Set the id.
	 * @param id The id to set
	 */
	public void setId(int id) {
		this.id = id;
	}
}

⌨️ 快捷键说明

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