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

Quick Search    Search Deep

Source code: org/acs/damsel/client/slideshow/MySlideShowsForm.java


1   package org.acs.damsel.client.slideshow;
2   
3   import org.apache.struts.action.*;
4   import javax.servlet.http.*;
5   
6   public class MySlideShowsForm extends ActionForm {
7     private String slideShowName = "";
8     private String whichButtonSelected="";
9   
10    public String getSlideShowName() {
11      return slideShowName;
12    }
13    public void setSlideShowName(String slideShowName) {
14      this.slideShowName = slideShowName;
15    }
16    public ActionErrors validate(ActionMapping actionMapping, HttpServletRequest httpServletRequest) {
17      /**@todo: finish this method, this is just the skeleton.*/
18      return null;
19    }
20    public void reset(ActionMapping actionMapping, HttpServletRequest httpServletRequest) {
21    }
22    public String getWhichButtonSelected() {
23      return whichButtonSelected;
24    }
25    public void setWhichButtonSelected(String whichButtonSelected) {
26      this.whichButtonSelected = whichButtonSelected;
27    }
28  }