📄 xs3201form.java
字号:
/*
* Generated by MyEclipse Struts
* Template path: templates/java/JavaClass.vtl
*/
package jp.com.cost.xs.web.form;
import javax.servlet.http.HttpServletRequest;
import jp.com.cost.common.DataCheckor;
import org.apache.struts.action.ActionErrors;
import org.apache.struts.action.ActionForm;
import org.apache.struts.action.ActionMapping;
import org.apache.struts.action.ActionMessage;
/**
* MyEclipse Struts Creation date: 08-28-2008
*
* XDoclet definition:
*
* @struts.form name="XS3201Form"
*/
public class XS3201Form extends ActionForm {
/*
* Generated fields
*/
/** startPort property */
private String startPort;
/** aimPort property */
private String aimPort;
/*
* Generated Methods
*/
/**
* Method validate
*
* @param mapping
* @param request
* @return ActionErrors
*/
public ActionErrors validate(ActionMapping mapping,
HttpServletRequest request) {
return null;
}
/**
* Method reset
*
* @param mapping
* @param request
*/
public void reset(ActionMapping mapping, HttpServletRequest request) {
}
/**
* Returns the startPort.
*
* @return String
*/
public String getStartPort() {
return startPort;
}
/**
* Set the startPort.
*
* @param startPort
* The startPort to set
*/
public void setStartPort(String startPort) {
this.startPort = startPort;
}
/**
* Returns the aimPort.
*
* @return String
*/
public String getAimPort() {
return aimPort;
}
/**
* Set the aimPort.
*
* @param aimPort
* The aimPort to set
*/
public void setAimPort(String aimPort) {
this.aimPort = aimPort;
}
}
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -