noteadmin.java
来自「留言簿架构 oracle 9i + jsp + struts 留言」· Java 代码 · 共 64 行
JAVA
64 行
/*
* Generated by MyEclipse Struts
* Template path: templates/java/JavaClass.vtl
*/
package com.guestbook.form;
import javax.servlet.http.HttpServletRequest;
import org.apache.struts.action.ActionErrors;
import org.apache.struts.action.ActionForm;
import org.apache.struts.action.ActionMapping;
/**
* MyEclipse Struts
* Creation date: 09-19-2007
*
* XDoclet definition:
* @struts.form name="NoteAdmin"
*/
public class NoteAdmin extends ActionForm {
/*
* Generated fields
*/
/** guestcontent property */
private String guestcontent;
/** title property */
private String title;
/**
* Returns the guestcontent.
* @return String
*/
public String getGuestcontent() {
return guestcontent;
}
/**
* Set the guestcontent.
* @param guestcontent The guestcontent to set
*/
public void setGuestcontent(String guestcontent) {
this.guestcontent = guestcontent;
}
/**
* Returns the title.
* @return String
*/
public String getTitle() {
return title;
}
/**
* Set the title.
* @param title The title to set
*/
public void setTitle(String title) {
this.title = title;
}
}
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?