📄 conferenceform.java
字号:
/*
* Generated by MyEclipse Struts
* Template path: templates/java/JavaClass.vtl
*/
package com.oa.commandmanage.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: 08-28-2007
*
* XDoclet definition:
* @struts.form name="conferenceForm"
*/
public class ConferenceForm extends ActionForm {
/*
* Generated fields
*/
/** compere property */
private String compere;
private String[]chkpla;
/** topic property */
private String topic;
/** content property */
private String content;
/** condate property */
private String condate;
/** remark property */
private String remark;
/** id property */
private Integer id;
/** actor property */
private String actor;
/*
* 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 compere.
* @return String
*/
public String getCompere() {
return compere;
}
/**
* Set the compere.
* @param compere The compere to set
*/
public void setCompere(String compere) {
this.compere = compere;
}
/**
* Returns the topic.
* @return String
*/
public String getTopic() {
return topic;
}
/**
* Set the topic.
* @param topic The topic to set
*/
public void setTopic(String topic) {
this.topic = topic;
}
/**
* Returns the content.
* @return String
*/
public String getContent() {
return content;
}
/**
* Set the content.
* @param content The content to set
*/
public void setContent(String content) {
this.content = content;
}
/**
* Returns the condate.
* @return String
*/
public String getCondate() {
return condate;
}
/**
* Set the condate.
* @param condate The condate to set
*/
public void setCondate(String condate) {
this.condate = condate;
}
/**
* Returns the remark.
* @return String
*/
public String getRemark() {
return remark;
}
/**
* Set the remark.
* @param remark The remark to set
*/
public void setRemark(String remark) {
this.remark = remark;
}
/**
* Returns the id.
* @return Integer
*/
public Integer getId() {
return id;
}
/**
* Set the id.
* @param id The id to set
*/
public void setId(Integer id) {
this.id = id;
}
/**
* Returns the actor.
* @return String
*/
public String getActor() {
return actor;
}
/**
* Set the actor.
* @param actor The actor to set
*/
public void setActor(String actor) {
this.actor = actor;
}
public String[] getChkpla() {
return chkpla;
}
public void setChkpla(String[] chkpla) {
this.chkpla = chkpla;
}
}
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -