📄 sttittlelistform.java
字号:
/*
* Generated by MyEclipse Struts
* Template path: templates/java/JavaClass.vtl
*/
package com.yourcompany.struts.form;
import java.io.UnsupportedEncodingException;
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: 07-30-2008
*
* XDoclet definition:
* @struts.form name="sttittlelistForm"
*/
public class SttittlelistForm extends ActionForm {
/*
* Generated fields
*/
/** st_word property */
private String st_word;
/** st_tiid property */
private String st_tiid;
/*
* 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
try
{
request.setCharacterEncoding("GBK");
}
catch (UnsupportedEncodingException ex)
{}
}
/**
* Returns the st_word.
* @return String
*/
public String getSt_word() {
return st_word;
}
/**
* Set the st_word.
* @param st_word The st_word to set
*/
public void setSt_word(String st_word) {
this.st_word = st_word;
}
/**
* Returns the st_tiid.
* @return String
*/
public String getSt_tiid() {
return st_tiid;
}
/**
* Set the st_tiid.
* @param st_tiid The st_tiid to set
*/
public void setSt_tiid(String st_tiid) {
this.st_tiid = st_tiid;
}
}
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -