KickJava   Java API By Example, From Geeks To Geeks.

Java > Open Source Codes > com > raptus > vr > VRBean


1 /*
2  * eAdmin/OWX
3  * Copyright (C) 1996-2003 OWX-Project Team <owx-team@gmx.net>
4  */

5
6 package com.raptus.vr;
7
8 import javax.servlet.http.HttpServletRequest JavaDoc;
9
10 import org.apache.struts.action.ActionMapping;
11
12 /**
13  *
14  *
15  * <hr>
16  * <table width="100%" border="0">
17  * <tr>
18  * <td width="24%"><b>Filename</b></td><td width="76%">VRBean.java</td>
19  * </tr>
20  * <tr>
21  * <td width="24%"><b>Author</b></td><td width="76%">Guy Zürcher (gzuercher@raptus.com)</td>
22  * </tr>
23  * <tr>
24  * <td width="24%"><b>Date</b></td><td width="76%">5th of March 2002</td>
25  * </tr>
26  * </table>
27  * <hr>
28  * <table width="100%" border="0">
29  * <tr>
30  * <td width="24%"><b>Date / Author</b></td><td width="76%"><b>Changes</b></td>
31  * </tr>
32  * </table>
33  * <hr>
34  */

35 public class VRBean extends org.apache.struts.action.ActionForm
36 {
37
38     /**
39      *
40      */

41     protected String JavaDoc cmd = "";
42
43     /**
44      *
45      */

46     protected String JavaDoc value = "";
47
48     /**
49      *
50      */

51     protected String JavaDoc next = "";
52
53     /**
54      *
55      */

56     protected String JavaDoc locale = null;
57
58     /**
59      *
60      */

61     protected String JavaDoc res = null;
62
63     /**
64      *
65      */

66     protected boolean csdetect = false;
67     
68     /**
69      *
70      */

71     protected boolean jscript = true;
72
73     /**
74      *
75      */

76     protected boolean flash = false;
77
78     /**
79      *
80      */

81     public void setCmd(String JavaDoc cmd) { this.cmd = cmd; }
82     public String JavaDoc getCmd() { return this.cmd; }
83
84     /**
85      *
86      */

87     public void setValue(String JavaDoc value) { this.value = value; }
88     public String JavaDoc getValue() { return this.value; }
89
90     /**
91      *
92      */

93     public void setNext(String JavaDoc next) { this.next = next; }
94     public String JavaDoc getNext() { return this.next; }
95
96     /**
97      *
98      */

99     public void setLocale(String JavaDoc l) { this.locale = l; }
100     public String JavaDoc getLocale() { return this.locale; }
101     
102     /**
103      *
104      */

105     public void setRes(String JavaDoc r) { this.res = r; }
106     public String JavaDoc getRes() { return this.res; }
107         
108     /**
109      *
110      */

111     public void setCsdetect(boolean csd) { this.csdetect = csd; }
112     public boolean getCsdetect() { return this.csdetect; }
113     
114     /**
115      *
116      */

117     public void setJscript(boolean js) { this.jscript = js; }
118     public boolean getJscript() { return this.jscript; }
119
120     /**
121      *
122      */

123     public void setFlash(boolean f) { this.flash = f; }
124     public boolean getFlash() { return this.flash; }
125
126     /**
127      *
128      */

129     public void reset(ActionMapping mapping, HttpServletRequest JavaDoc request)
130     {
131         super.reset(mapping, request);
132     }
133 }
134
135 // eof
136
Popular Tags