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/ViewSlideShowForm.java


1   package org.acs.damsel.client.slideshow;
2   
3   import org.apache.struts.action.*;
4   import javax.servlet.http.*;
5   
6   public class ViewSlideShowForm extends ActionForm {
7     private String buttonType;
8     private int numViewing = 0;
9     private int numAssets;
10    public int getNumViewing() {
11      return numViewing;
12    }
13    public void setNumViewing(int numViewing) {
14      this.numViewing = numViewing;
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 getButtonType() {
23      return buttonType;
24    }
25    public void setButtonType(String buttonType) {
26      this.buttonType = buttonType;
27    }
28    public int getNumAssets() {
29      return numAssets;
30    }
31    public void setNumAssets(int numAssets) {
32      this.numAssets = numAssets;
33    }
34  }