Docjar: A Java Source and Docuemnt Enginecom.*    java.*    javax.*    org.*    all    new    plug-in

Quick Search    Search Deep

Source code: org/acs/damsel/client/add/AddSlideShowForm.java


1   package org.acs.damsel.client.add;
2   
3   import org.apache.struts.action.*;
4   import javax.servlet.http.*;
5   
6   public class AddSlideShowForm extends ActionForm {
7     private String delay = "";
8     private String slideShowName = "";
9     private String submitType = "";
10    private String owner;
11  
12    public String getDelay() {
13      return delay;
14    }
15    public void setDelay(String delay) {
16      this.delay = delay;
17    }
18    public String getSlideShowName() {
19      return slideShowName;
20    }
21    public void setSlideShowName(String slideShowName) {
22      this.slideShowName = slideShowName;
23    }
24    public ActionErrors validate(ActionMapping actionMapping, HttpServletRequest httpServletRequest) {
25      /**@todo: finish this method, this is just the skeleton.*/
26      return null;
27    }
28    public void reset(ActionMapping actionMapping, HttpServletRequest httpServletRequest) {
29    }
30    public String getSubmitType() {
31      return submitType;
32    }
33    public void setSubmitType(String submitType) {
34      this.submitType = submitType;
35    }
36    public String getOwner() {
37      return owner;
38    }
39    public void setOwner(String owner) {
40      this.owner = owner;
41    }
42  }