📄 projectform.java
字号:
/*
* Generated by MyEclipse Struts
* Template path: templates/java/JavaClass.vtl
*/
package actions;
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: 10-12-2007
*
* XDoclet definition:
* @struts.form name="projectForm"
*/
public class ProjectForm extends ActionForm {
/*
* Generated fields
*/
/** brief property */
private String brief;
/** startTime property */
private String startTime;
/** name property */
private String name;
/** pid property */
private String pid="0";
String command;
String[] check;
String condition;
/*
* Generated Methods
*/
/**
* Method validate
* @param mapping
* @param request
* @return ActionErrors
*/
public ActionErrors validate(ActionMapping mapping,
HttpServletRequest request) {
// TODO Auto-generated method stub
return null;
}
/**
* Method reset
* @param mapping
* @param request
*/
public void reset(ActionMapping mapping, HttpServletRequest request) {
// TODO Auto-generated method stub
}
/**
* Returns the brief.
* @return String
*/
public String getBrief() {
return brief;
}
/**
* Set the brief.
* @param brief The brief to set
*/
public void setBrief(String brief) {
this.brief = brief;
}
/**
* Returns the startTime.
* @return String
*/
public String getStartTime() {
return startTime;
}
/**
* Set the startTime.
* @param startTime The startTime to set
*/
public void setStartTime(String startTime) {
this.startTime = startTime;
}
/**
* Returns the name.
* @return String
*/
public String getName() {
return name;
}
/**
* Set the name.
* @param name The name to set
*/
public void setName(String name) {
this.name = name;
}
/**
* Returns the pid.
* @return String
*/
public String getPid() {
return pid;
}
/**
* Set the pid.
* @param pid The pid to set
*/
public void setPid(String pid) {
this.pid = pid;
}
public String getCommand() {
return command;
}
public void setCommand(String sample) {
this.command = sample;
}
public String getCondition() {
return condition;
}
public void setCondition(String sample) {
this.condition = sample;
}
public String[] getCheck() {
return check;
}
public void setCheck(String[] sample) {
this.check = sample;
}
}
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -