KickJava   Java API By Example, From Geeks To Geeks.

Java > Open Source Codes > org > jahia > clipbuilder > html > struts > TestClipperForm


1 package org.jahia.clipbuilder.html.struts;
2
3 import java.util.*;
4
5 import org.jahia.clipbuilder.html.bean.*;
6 import org.jahia.clipbuilder.html.struts.Util.*;
7 import org.apache.struts.action.*;
8
9 /**
10  * Description of the Class
11  *
12  *@author Tlili Khaled
13  */

14 public class TestClipperForm extends AbstractWizardForm {
15     private String JavaDoc oldSelectedUrl;
16     private String JavaDoc selectedUrl;
17     private List actifFormParamsList;
18     private List actifQueryParamsList;
19     private String JavaDoc bodyContent;
20     private String JavaDoc webBrowserSimulatorMode;
21     private String JavaDoc resetCache;
22
23
24     /**
25      * Constructor for the TestClipperForm object
26      */

27     public TestClipperForm() {
28     }
29
30
31
32     /**
33      * Sets the SelectedUrl attribute of the TestClipperForm object
34      *
35      *@param selectedUrl The new SelectedUrl value
36      */

37     public void setSelectedUrl(String JavaDoc selectedUrl) {
38         this.selectedUrl = selectedUrl;
39     }
40
41
42     /**
43      * Sets the ResetCache attribute of the TestClipperForm object
44      *
45      *@param resetCache The new ResetCache value
46      */

47     public void setResetCache(String JavaDoc resetCache) {
48         this.resetCache = resetCache;
49     }
50
51
52
53     /**
54      * Sets the ActifFormParamsList attribute of the TestClipperForm object
55      *
56      *@param actifFormParamsList The new ActifFormParamsList value
57      */

58     public void setActifFormParamsList(List actifFormParamsList) {
59         this.actifFormParamsList = actifFormParamsList;
60     }
61
62
63     /**
64      * Sets the ActifQueryParamsList attribute of the TestClipperForm object
65      *
66      *@param actifQueryParamsList The new ActifQueryParamsList value
67      */

68     public void setActifQueryParamsList(List actifQueryParamsList) {
69         this.actifQueryParamsList = actifQueryParamsList;
70     }
71
72
73     /**
74      * Sets the BodyContent attribute of the TestClipperForm object
75      *
76      *@param bodyContent The new BodyContent value
77      */

78     public void setBodyContent(String JavaDoc bodyContent) {
79         this.bodyContent = bodyContent;
80     }
81
82
83     /**
84      * Sets the OldSelectedUrl attribute of the TestClipperForm object
85      *
86      *@param oldSelectedUrl The new OldSelectedUrl value
87      */

88     public void setOldSelectedUrl(String JavaDoc oldSelectedUrl) {
89         this.oldSelectedUrl = oldSelectedUrl;
90     }
91
92
93     /**
94      * Sets the WebBrowserSimulatorMode attribute of the TestClipperForm object
95      *
96      *@param webBrowserSimulatorMode The new WebBrowserSimulatorMode value
97      */

98     public void setWebBrowserSimulatorMode(String JavaDoc webBrowserSimulatorMode) {
99         this.webBrowserSimulatorMode = webBrowserSimulatorMode;
100     }
101
102
103     /**
104      * Gets the ResetCache attribute of the TestClipperForm object
105      *
106      *@return The ResetCache value
107      */

108     public String JavaDoc getResetCache() {
109         return this.resetCache;
110     }
111
112
113     /**
114      * Gets the Id attribute of the TestClipperForm object
115      *
116      *@return The Id value
117      */

118     public int getId() {
119         return Constants.TEST;
120     }
121
122
123     /**
124      * Gets the Errors attribute of the TestClipperForm object
125      *
126      *@return The Errors value
127      */

128     public ActionErrors getErrors() {
129         ActionErrors errors = new ActionErrors();
130         return errors;
131     }
132
133
134     /**
135      * Gets the ActifFormParamsList attribute of the TestClipperForm object
136      *
137      *@return The ActifFormParamsList value
138      */

139     public List getActifFormParamsList() {
140         return actifFormParamsList;
141     }
142
143
144     /**
145      * Gets the SelectedUrl attribute of the TestClipperForm object
146      *
147      *@return The SelectedUrl value
148      */

149     public String JavaDoc getSelectedUrl() {
150         return selectedUrl;
151     }
152
153
154     /**
155      * Gets the ActifQueryParamsList attribute of the TestClipperForm object
156      *
157      *@return The ActifQueryParamsList value
158      */

159     public List getActifQueryParamsList() {
160         return actifQueryParamsList;
161     }
162
163
164     /**
165      * Gets the BodyContent attribute of the TestClipperForm object
166      *
167      *@return The BodyContent value
168      */

169     public String JavaDoc getBodyContent() {
170         return bodyContent;
171     }
172
173
174     /**
175      * Gets the OldSelectedUrl attribute of the TestClipperForm object
176      *
177      *@return The OldSelectedUrl value
178      */

179     public String JavaDoc getOldSelectedUrl() {
180         return oldSelectedUrl;
181     }
182
183
184     /**
185      * Gets the WebBrowserSimulatorMode attribute of the TestClipperForm object
186      *
187      *@return The WebBrowserSimulatorMode value
188      */

189     public String JavaDoc getWebBrowserSimulatorMode() {
190         return webBrowserSimulatorMode;
191     }
192
193
194     /**
195      * Description of the Method
196      *
197      *@param cBean Description of Parameter
198      */

199     public void loadFromClipperBean(ClipperBean cBean) {
200
201     }
202
203 }
204
Popular Tags