📄 noteadmin.java
字号:
/*
* 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 + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -