📄 thaddtittleform.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: 08-04-2008
*
* XDoclet definition:
* @struts.form name="thaddtittleForm"
*/
public class ThaddtittleForm extends ActionForm {
/*
* Generated fields
*/
/** ti_name property */
private String ti_name;
/** ti_memo property */
private String ti_memo;
/*
* 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 ti_name.
* @return String
*/
public String getTi_name() {
return ti_name;
}
/**
* Set the ti_name.
* @param ti_name The ti_name to set
*/
public void setTi_name(String ti_name) {
this.ti_name = ti_name;
}
/**
* Returns the ti_memo.
* @return String
*/
public String getTi_memo() {
return ti_memo;
}
/**
* Set the ti_memo.
* @param ti_memo The ti_memo to set
*/
public void setTi_memo(String ti_memo) {
this.ti_memo = ti_memo;
}
}
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -