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
RoleActionForm.java
Package: shihua.rar [view]
Upload User: zghglow
Upload Date: 2022-08-09
Package Size: 27227k
Code Size: 1k
Category:
WEB(ASP,PHP,...)
Development Platform:
JavaScript
- package com.chinacannel.xlchemical.struts.ActionForm;
- import javax.servlet.http.*;
- import org.apache.struts.action.*;
- public class RoleActionForm extends ActionForm {
- private String name = "";
- private Long id = new Long(0);
- private String[] fmodel;
- private String[] cmodel;
- private String[] menus;
- public ActionErrors validate(ActionMapping actionMapping,
- HttpServletRequest httpServletRequest) {
- /** @todo: finish this method, this is just the skeleton.*/
- return null;
- }
- public void reset(ActionMapping actionMapping,
- HttpServletRequest servletRequest) {
- }
- public Long getId() {
- return id;
- }
- public String getName() {
- return name;
- }
- public String[] getCmodel() {
- return cmodel;
- }
- public String[] getFmodel() {
- return fmodel;
- }
- public String[] getMenus() {
- return menus;
- }
- public void setId(Long id) {
- this.id = id;
- }
- public void setName(String name) {
- this.name = name;
- }
- public void setCmodel(String[] cmodel) {
- this.cmodel = cmodel;
- }
- public void setFmodel(String[] fmodel) {
- this.fmodel = fmodel;
- }
- public void setMenus(String[] menus) {
- this.menus = menus;
- }
- }