KickJava   Java API By Example, From Geeks To Geeks.

Java > Open Source Codes > com > mvnforum > jaxb > db > ForumType


1 //
2
// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v1.0.5-b16-fcs
3
// See <a HREF="http://java.sun.com/xml/jaxb">http://java.sun.com/xml/jaxb</a>
4
// Any modifications to this file will be lost upon recompilation of the source schema.
5
// Generated on: 2005.12.17 at 09:43:27 AM GMT+07:00
6
//
7

8
9 package com.mvnforum.jaxb.db;
10
11
12 /**
13  * Java content class for ForumType complex type.
14  * <p>The following schema fragment specifies the expected content contained within this java content object. (defined at file:/D:/working/mvnforum/contrib/phpbb2mvnforum-jaxb/schema/mvnforum.xsd line 118)
15  * <p>
16  * <pre>
17  * &lt;complexType name="ForumType">
18  * &lt;complexContent>
19  * &lt;restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
20  * &lt;sequence>
21  * &lt;element name="ForumLastPostMemberName" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
22  * &lt;element name="ForumName" type="{http://www.w3.org/2001/XMLSchema}string"/>
23  * &lt;element name="ForumDesc" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
24  * &lt;element name="ForumCreationDate" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
25  * &lt;element name="ForumModifiedDate" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
26  * &lt;element name="ForumLastPostDate" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
27  * &lt;element name="ForumOrder" type="{http://www.w3.org/2001/XMLSchema}int" minOccurs="0"/>
28  * &lt;element name="ForumType" type="{http://www.w3.org/2001/XMLSchema}int" minOccurs="0"/>
29  * &lt;element name="ForumFormatOption" type="{http://www.w3.org/2001/XMLSchema}int" minOccurs="0"/>
30  * &lt;element name="ForumOption" type="{http://www.w3.org/2001/XMLSchema}int" minOccurs="0"/>
31  * &lt;element name="ForumStatus" type="{http://www.w3.org/2001/XMLSchema}int" minOccurs="0"/>
32  * &lt;element name="ForumModerationMode" type="{http://www.w3.org/2001/XMLSchema}int" minOccurs="0"/>
33  * &lt;element name="ForumPassword" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
34  * &lt;element name="ForumThreadCount" type="{http://www.w3.org/2001/XMLSchema}int" minOccurs="0"/>
35  * &lt;element name="ForumPostCount" type="{http://www.w3.org/2001/XMLSchema}int" minOccurs="0"/>
36  * &lt;element name="MemberForumPermissionList" type="{}MemberForumPermissionList" minOccurs="0"/>
37  * &lt;element name="GroupForumPermissionList" type="{}GroupForumPermissionList" minOccurs="0"/>
38  * &lt;element name="ForumWatchList" type="{}ForumWatchList" minOccurs="0"/>
39  * &lt;element name="ThreadList" type="{}ThreadList" minOccurs="0"/>
40  * &lt;/sequence>
41  * &lt;/restriction>
42  * &lt;/complexContent>
43  * &lt;/complexType>
44  * </pre>
45  *
46  */

47 public interface ForumType {
48
49
50     /**
51      * Gets the value of the forumLastPostMemberName property.
52      *
53      * @return
54      * possible object is
55      * {@link java.lang.String}
56      */

57     java.lang.String JavaDoc getForumLastPostMemberName();
58
59     /**
60      * Sets the value of the forumLastPostMemberName property.
61      *
62      * @param value
63      * allowed object is
64      * {@link java.lang.String}
65      */

66     void setForumLastPostMemberName(java.lang.String JavaDoc value);
67
68     /**
69      * Gets the value of the forumPassword property.
70      *
71      * @return
72      * possible object is
73      * {@link java.lang.String}
74      */

75     java.lang.String JavaDoc getForumPassword();
76
77     /**
78      * Sets the value of the forumPassword property.
79      *
80      * @param value
81      * allowed object is
82      * {@link java.lang.String}
83      */

84     void setForumPassword(java.lang.String JavaDoc value);
85
86     /**
87      * Gets the value of the forumType property.
88      *
89      */

90     int getForumType();
91
92     /**
93      * Sets the value of the forumType property.
94      *
95      */

96     void setForumType(int value);
97
98     /**
99      * Gets the value of the forumModifiedDate property.
100      *
101      * @return
102      * possible object is
103      * {@link java.lang.String}
104      */

105     java.lang.String JavaDoc getForumModifiedDate();
106
107     /**
108      * Sets the value of the forumModifiedDate property.
109      *
110      * @param value
111      * allowed object is
112      * {@link java.lang.String}
113      */

114     void setForumModifiedDate(java.lang.String JavaDoc value);
115
116     /**
117      * Gets the value of the forumOption property.
118      *
119      */

120     int getForumOption();
121
122     /**
123      * Sets the value of the forumOption property.
124      *
125      */

126     void setForumOption(int value);
127
128     /**
129      * Gets the value of the memberForumPermissionList property.
130      *
131      * @return
132      * possible object is
133      * {@link com.mvnforum.jaxb.db.MemberForumPermissionList}
134      */

135     com.mvnforum.jaxb.db.MemberForumPermissionList getMemberForumPermissionList();
136
137     /**
138      * Sets the value of the memberForumPermissionList property.
139      *
140      * @param value
141      * allowed object is
142      * {@link com.mvnforum.jaxb.db.MemberForumPermissionList}
143      */

144     void setMemberForumPermissionList(com.mvnforum.jaxb.db.MemberForumPermissionList value);
145
146     /**
147      * Gets the value of the forumStatus property.
148      *
149      */

150     int getForumStatus();
151
152     /**
153      * Sets the value of the forumStatus property.
154      *
155      */

156     void setForumStatus(int value);
157
158     /**
159      * Gets the value of the forumDesc property.
160      *
161      * @return
162      * possible object is
163      * {@link java.lang.String}
164      */

165     java.lang.String JavaDoc getForumDesc();
166
167     /**
168      * Sets the value of the forumDesc property.
169      *
170      * @param value
171      * allowed object is
172      * {@link java.lang.String}
173      */

174     void setForumDesc(java.lang.String JavaDoc value);
175
176     /**
177      * Gets the value of the groupForumPermissionList property.
178      *
179      * @return
180      * possible object is
181      * {@link com.mvnforum.jaxb.db.GroupForumPermissionList}
182      */

183     com.mvnforum.jaxb.db.GroupForumPermissionList getGroupForumPermissionList();
184
185     /**
186      * Sets the value of the groupForumPermissionList property.
187      *
188      * @param value
189      * allowed object is
190      * {@link com.mvnforum.jaxb.db.GroupForumPermissionList}
191      */

192     void setGroupForumPermissionList(com.mvnforum.jaxb.db.GroupForumPermissionList value);
193
194     /**
195      * Gets the value of the forumCreationDate property.
196      *
197      * @return
198      * possible object is
199      * {@link java.lang.String}
200      */

201     java.lang.String JavaDoc getForumCreationDate();
202
203     /**
204      * Sets the value of the forumCreationDate property.
205      *
206      * @param value
207      * allowed object is
208      * {@link java.lang.String}
209      */

210     void setForumCreationDate(java.lang.String JavaDoc value);
211
212     /**
213      * Gets the value of the forumPostCount property.
214      *
215      */

216     int getForumPostCount();
217
218     /**
219      * Sets the value of the forumPostCount property.
220      *
221      */

222     void setForumPostCount(int value);
223
224     /**
225      * Gets the value of the forumOrder property.
226      *
227      */

228     int getForumOrder();
229
230     /**
231      * Sets the value of the forumOrder property.
232      *
233      */

234     void setForumOrder(int value);
235
236     /**
237      * Gets the value of the forumFormatOption property.
238      *
239      */

240     int getForumFormatOption();
241
242     /**
243      * Sets the value of the forumFormatOption property.
244      *
245      */

246     void setForumFormatOption(int value);
247
248     /**
249      * Gets the value of the forumWatchList property.
250      *
251      * @return
252      * possible object is
253      * {@link com.mvnforum.jaxb.db.ForumWatchList}
254      */

255     com.mvnforum.jaxb.db.ForumWatchList getForumWatchList();
256
257     /**
258      * Sets the value of the forumWatchList property.
259      *
260      * @param value
261      * allowed object is
262      * {@link com.mvnforum.jaxb.db.ForumWatchList}
263      */

264     void setForumWatchList(com.mvnforum.jaxb.db.ForumWatchList value);
265
266     /**
267      * Gets the value of the forumName property.
268      *
269      * @return
270      * possible object is
271      * {@link java.lang.String}
272      */

273     java.lang.String JavaDoc getForumName();
274
275     /**
276      * Sets the value of the forumName property.
277      *
278      * @param value
279      * allowed object is
280      * {@link java.lang.String}
281      */

282     void setForumName(java.lang.String JavaDoc value);
283
284     /**
285      * Gets the value of the forumModerationMode property.
286      *
287      */

288     int getForumModerationMode();
289
290     /**
291      * Sets the value of the forumModerationMode property.
292      *
293      */

294     void setForumModerationMode(int value);
295
296     /**
297      * Gets the value of the threadList property.
298      *
299      * @return
300      * possible object is
301      * {@link com.mvnforum.jaxb.db.ThreadList}
302      */

303     com.mvnforum.jaxb.db.ThreadList getThreadList();
304
305     /**
306      * Sets the value of the threadList property.
307      *
308      * @param value
309      * allowed object is
310      * {@link com.mvnforum.jaxb.db.ThreadList}
311      */

312     void setThreadList(com.mvnforum.jaxb.db.ThreadList value);
313
314     /**
315      * Gets the value of the forumLastPostDate property.
316      *
317      * @return
318      * possible object is
319      * {@link java.lang.String}
320      */

321     java.lang.String JavaDoc getForumLastPostDate();
322
323     /**
324      * Sets the value of the forumLastPostDate property.
325      *
326      * @param value
327      * allowed object is
328      * {@link java.lang.String}
329      */

330     void setForumLastPostDate(java.lang.String JavaDoc value);
331
332     /**
333      * Gets the value of the forumThreadCount property.
334      *
335      */

336     int getForumThreadCount();
337
338     /**
339      * Sets the value of the forumThreadCount property.
340      *
341      */

342     void setForumThreadCount(int value);
343
344 }
345
Popular Tags