Code/Resource
Windows Develop
Linux-Unix program
Internet-Socket-Network
Web Server
Browser Client
Ftp Server
Ftp Client
Browser Plugins
Proxy Server
Email Server
Email Client
WEB Mail
Firewall-Security
Telnet Server
Telnet Client
ICQ-IM-Chat
Search Engine
Sniffer Package capture
Remote Control
xml-soap-webservice
P2P
WEB(ASP,PHP,...)
TCP/IP Stack
SNMP
Grid Computing
SilverLight
DNS
Cluster Service
Network Security
Communication-Mobile
Game Program
Editor
Multimedia program
Graph program
Compiler program
Compress-Decompress algrithms
Crypt_Decrypt algrithms
Mathimatics-Numerical algorithms
MultiLanguage
Disk/Storage
Java Develop
assembly language
Applications
Other systems
Database system
Embeded-SCM Develop
FlashMX/Flex
source in ebook
Delphi VCL
OS Develop
MiddleWare
MPI
MacOS develop
LabView
ELanguage
Software/Tools
E-Books
Artical/Document
EmailForm.java
Package: (J2EE)oa.rar [view]
Upload User: lm2018
Upload Date: 2015-12-12
Package Size: 30449k
Code Size: 4k
Category:
Jsp/Servlet
Development Platform:
Java
- //Created by MyEclipse Struts
- // XSL source (default): platform:/plugin/com.genuitec.eclipse.cross.easystruts.eclipse_4.1.0/xslt/JavaClass.xsl
- package com.oa.module.email.form;
- import java.util.Enumeration;
- import java.util.HashSet;
- import java.util.Hashtable;
- import java.util.Set;
- import javax.servlet.http.HttpServletRequest;
- import org.apache.struts.action.ActionErrors;
- import org.apache.struts.action.ActionForm;
- import org.apache.struts.action.ActionMapping;
- import org.apache.struts.action.ActionMessage;
- import org.apache.struts.upload.FormFile;
- /**
- * MyEclipse Struts Creation date: 01-20-2008
- *
- * XDoclet definition:
- *
- * @struts.form name="emailForm"
- */
- public class EmailForm extends ActionForm {
- // --------------------------------------------------------- Instance
- // Variables
- private String emailid;
- private String title;
- private String content;
- private String sendid;
- private String sendname;
- private String receiveid;
- private String receivename;
- private String sendtime;
- private String isread;
- private String emailtype;
- private String isfujian;
- private String method;
- private String[] checkeduserList;
- private FormFile myfile;
- private Set fujian = new HashSet();
- private String[] check;
- private String[] senduser;
- // --------------------------------------------------------- Methods
- public String[] getSenduser() {
- return senduser;
- }
- public void setSenduser(String[] senduser) {
- this.senduser = senduser;
- }
- public String[] getCheck() {
- return check;
- }
- public void setCheck(String[] check) {
- this.check = check;
- }
- public Set getFujian() {
- return fujian;
- }
- public void setFujian(Set fujian) {
- this.fujian = fujian;
- }
- public String getMethod() {
- return method;
- }
- public void setMethod(String method) {
- this.method = method;
- }
- public String getContent() {
- return content;
- }
- public void setContent(String content) {
- this.content = content;
- }
- public String getEmailid() {
- return emailid;
- }
- public void setEmailid(String emailid) {
- this.emailid = emailid;
- }
- public String getEmailtype() {
- return emailtype;
- }
- public void setEmailtype(String emailtype) {
- this.emailtype = emailtype;
- }
- public String getIsfujian() {
- return isfujian;
- }
- public void setIsfujian(String isfujian) {
- this.isfujian = isfujian;
- }
- public String getIsread() {
- return isread;
- }
- public void setIsread(String isread) {
- this.isread = isread;
- }
- public String getReceiveid() {
- return receiveid;
- }
- public void setReceiveid(String receiveid) {
- this.receiveid = receiveid;
- }
- public String getReceivename() {
- return receivename;
- }
- public void setReceivename(String receivename) {
- this.receivename = receivename;
- }
- public String getSendid() {
- return sendid;
- }
- public void setSendid(String sendid) {
- this.sendid = sendid;
- }
- public String getSendname() {
- return sendname;
- }
- public void setSendname(String sendname) {
- this.sendname = sendname;
- }
- public String getSendtime() {
- return sendtime;
- }
- public void setSendtime(String sendtime) {
- this.sendtime = sendtime;
- }
- public String getTitle() {
- return title;
- }
- public void setTitle(String title) {
- this.title = title;
- }
- /**
- * 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[] getCheckeduserList() {
- return checkeduserList;
- }
- public void setCheckeduserList(String[] checkeduserList) {
- this.checkeduserList = checkeduserList;
- }
- public FormFile getMyfile() {
- return myfile;
- }
- public void setMyfile(FormFile myfile) {
- this.myfile = myfile;
- }
- }