📄 doc_writeform.java
字号:
/*
* Generated by MyEclipse Struts
* Template path: templates/java/JavaClass.vtl
*/
package com.oa.struts.document.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: 11-05-2008
*
* XDoclet definition:
* @struts.form name="doc_writeForm"
*/
public class Doc_writeForm extends ActionForm {
/*
* Generated fields
*/
/** receiveDept property */
private String receiveDept;
/** receiveUser property */
private String receiveUser;
/** docTitle property */
private String docTitle;
/** docContent property */
private String docContent;
private String isAffix;
/*
* 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) {
// TODO Auto-generated method stub
}
public String getIsAffix() {
return isAffix;
}
public void setIsAffix(String isAffix) {
this.isAffix = isAffix;
}
/**
* Returns the receiveDept.
* @return String
*/
public String getReceiveDept() {
return receiveDept;
}
/**
* Set the receiveDept.
* @param receiveDept The receiveDept to set
*/
public void setReceiveDept(String receiveDept) {
this.receiveDept = receiveDept;
}
/**
* Returns the receiveUser.
* @return String
*/
public String getReceiveUser() {
return receiveUser;
}
/**
* Set the receiveUser.
* @param receiveUser The receiveUser to set
*/
public void setReceiveUser(String receiveUser) {
this.receiveUser = receiveUser;
}
/**
* Returns the docTitle.
* @return String
*/
public String getDocTitle() {
return docTitle;
}
/**
* Set the docTitle.
* @param docTitle The docTitle to set
*/
public void setDocTitle(String docTitle) {
this.docTitle = docTitle;
}
/**
* Returns the docContent.
* @return String
*/
public String getDocContent() {
return docContent;
}
/**
* Set the docContent.
* @param docContent The docContent to set
*/
public void setDocContent(String docContent) {
this.docContent = docContent;
}
}
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -