?? masterform.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 + -