KickJava   Java API By Example, From Geeks To Geeks.

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


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 ThreadType 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 180)
15  * <p>
16  * <pre>
17  * &lt;complexType name="ThreadType">
18  * &lt;complexContent>
19  * &lt;restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
20  * &lt;sequence>
21  * &lt;element name="MemberName" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
22  * &lt;element name="ThreadLastPostMemberName" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
23  * &lt;element name="ThreadTopic" type="{http://www.w3.org/2001/XMLSchema}string"/>
24  * &lt;element name="ThreadBody" type="{http://www.w3.org/2001/XMLSchema}string"/>
25  * &lt;element name="ThreadVoteCount" type="{http://www.w3.org/2001/XMLSchema}int" minOccurs="0"/>
26  * &lt;element name="ThreadVoteTotalStars" type="{http://www.w3.org/2001/XMLSchema}int" minOccurs="0"/>
27  * &lt;element name="ThreadCreationDate" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
28  * &lt;element name="ThreadLastPostDate" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
29  * &lt;element name="ThreadType" type="{http://www.w3.org/2001/XMLSchema}int" minOccurs="0"/>
30  * &lt;element name="ThreadOption" type="{http://www.w3.org/2001/XMLSchema}int" minOccurs="0"/>
31  * &lt;element name="ThreadStatus" type="{http://www.w3.org/2001/XMLSchema}int" minOccurs="0"/>
32  * &lt;element name="ThreadHasPoll" type="{http://www.w3.org/2001/XMLSchema}int" minOccurs="0"/>
33  * &lt;element name="ThreadViewCount" type="{http://www.w3.org/2001/XMLSchema}int" minOccurs="0"/>
34  * &lt;element name="ThreadReplyCount" type="{http://www.w3.org/2001/XMLSchema}int" minOccurs="0"/>
35  * &lt;element name="ThreadIcon" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
36  * &lt;element name="ThreadDuration" type="{http://www.w3.org/2001/XMLSchema}int" minOccurs="0"/>
37  * &lt;element name="ThreadWatchList" type="{}ThreadWatchList" minOccurs="0"/>
38  * &lt;element name="FavoriteThreadList" type="{}FavoriteThreadList" minOccurs="0"/>
39  * &lt;element name="PostList" type="{}PostList" minOccurs="0"/>
40  * &lt;/sequence>
41  * &lt;/restriction>
42  * &lt;/complexContent>
43  * &lt;/complexType>
44  * </pre>
45  *
46  */

47 public interface ThreadType {
48
49
50     /**
51      * Gets the value of the threadOption property.
52      *
53      */

54     int getThreadOption();
55
56     /**
57      * Sets the value of the threadOption property.
58      *
59      */

60     void setThreadOption(int value);
61
62     /**
63      * Gets the value of the postList property.
64      *
65      * @return
66      * possible object is
67      * {@link com.mvnforum.jaxb.db.PostList}
68      */

69     com.mvnforum.jaxb.db.PostList getPostList();
70
71     /**
72      * Sets the value of the postList property.
73      *
74      * @param value
75      * allowed object is
76      * {@link com.mvnforum.jaxb.db.PostList}
77      */

78     void setPostList(com.mvnforum.jaxb.db.PostList value);
79
80     /**
81      * Gets the value of the threadDuration property.
82      *
83      */

84     int getThreadDuration();
85
86     /**
87      * Sets the value of the threadDuration property.
88      *
89      */

90     void setThreadDuration(int value);
91
92     /**
93      * Gets the value of the threadStatus property.
94      *
95      */

96     int getThreadStatus();
97
98     /**
99      * Sets the value of the threadStatus property.
100      *
101      */

102     void setThreadStatus(int value);
103
104     /**
105      * Gets the value of the threadVoteCount property.
106      *
107      */

108     int getThreadVoteCount();
109
110     /**
111      * Sets the value of the threadVoteCount property.
112      *
113      */

114     void setThreadVoteCount(int value);
115
116     /**
117      * Gets the value of the threadCreationDate property.
118      *
119      * @return
120      * possible object is
121      * {@link java.lang.String}
122      */

123     java.lang.String JavaDoc getThreadCreationDate();
124
125     /**
126      * Sets the value of the threadCreationDate property.
127      *
128      * @param value
129      * allowed object is
130      * {@link java.lang.String}
131      */

132     void setThreadCreationDate(java.lang.String JavaDoc value);
133
134     /**
135      * Gets the value of the threadVoteTotalStars property.
136      *
137      */

138     int getThreadVoteTotalStars();
139
140     /**
141      * Sets the value of the threadVoteTotalStars property.
142      *
143      */

144     void setThreadVoteTotalStars(int value);
145
146     /**
147      * Gets the value of the threadHasPoll property.
148      *
149      */

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

156     void setThreadHasPoll(int value);
157
158     /**
159      * Gets the value of the threadReplyCount property.
160      *
161      */

162     int getThreadReplyCount();
163
164     /**
165      * Sets the value of the threadReplyCount property.
166      *
167      */

168     void setThreadReplyCount(int value);
169
170     /**
171      * Gets the value of the threadLastPostDate property.
172      *
173      * @return
174      * possible object is
175      * {@link java.lang.String}
176      */

177     java.lang.String JavaDoc getThreadLastPostDate();
178
179     /**
180      * Sets the value of the threadLastPostDate property.
181      *
182      * @param value
183      * allowed object is
184      * {@link java.lang.String}
185      */

186     void setThreadLastPostDate(java.lang.String JavaDoc value);
187
188     /**
189      * Gets the value of the threadBody property.
190      *
191      * @return
192      * possible object is
193      * {@link java.lang.String}
194      */

195     java.lang.String JavaDoc getThreadBody();
196
197     /**
198      * Sets the value of the threadBody property.
199      *
200      * @param value
201      * allowed object is
202      * {@link java.lang.String}
203      */

204     void setThreadBody(java.lang.String JavaDoc value);
205
206     /**
207      * Gets the value of the memberName property.
208      *
209      * @return
210      * possible object is
211      * {@link java.lang.String}
212      */

213     java.lang.String JavaDoc getMemberName();
214
215     /**
216      * Sets the value of the memberName property.
217      *
218      * @param value
219      * allowed object is
220      * {@link java.lang.String}
221      */

222     void setMemberName(java.lang.String JavaDoc value);
223
224     /**
225      * Gets the value of the threadLastPostMemberName property.
226      *
227      * @return
228      * possible object is
229      * {@link java.lang.String}
230      */

231     java.lang.String JavaDoc getThreadLastPostMemberName();
232
233     /**
234      * Sets the value of the threadLastPostMemberName property.
235      *
236      * @param value
237      * allowed object is
238      * {@link java.lang.String}
239      */

240     void setThreadLastPostMemberName(java.lang.String JavaDoc value);
241
242     /**
243      * Gets the value of the threadTopic property.
244      *
245      * @return
246      * possible object is
247      * {@link java.lang.String}
248      */

249     java.lang.String JavaDoc getThreadTopic();
250
251     /**
252      * Sets the value of the threadTopic property.
253      *
254      * @param value
255      * allowed object is
256      * {@link java.lang.String}
257      */

258     void setThreadTopic(java.lang.String JavaDoc value);
259
260     /**
261      * Gets the value of the favoriteThreadList property.
262      *
263      * @return
264      * possible object is
265      * {@link com.mvnforum.jaxb.db.FavoriteThreadList}
266      */

267     com.mvnforum.jaxb.db.FavoriteThreadList getFavoriteThreadList();
268
269     /**
270      * Sets the value of the favoriteThreadList property.
271      *
272      * @param value
273      * allowed object is
274      * {@link com.mvnforum.jaxb.db.FavoriteThreadList}
275      */

276     void setFavoriteThreadList(com.mvnforum.jaxb.db.FavoriteThreadList value);
277
278     /**
279      * Gets the value of the threadType property.
280      *
281      */

282     int getThreadType();
283
284     /**
285      * Sets the value of the threadType property.
286      *
287      */

288     void setThreadType(int value);
289
290     /**
291      * Gets the value of the threadIcon property.
292      *
293      * @return
294      * possible object is
295      * {@link java.lang.String}
296      */

297     java.lang.String JavaDoc getThreadIcon();
298
299     /**
300      * Sets the value of the threadIcon property.
301      *
302      * @param value
303      * allowed object is
304      * {@link java.lang.String}
305      */

306     void setThreadIcon(java.lang.String JavaDoc value);
307
308     /**
309      * Gets the value of the threadWatchList property.
310      *
311      * @return
312      * possible object is
313      * {@link com.mvnforum.jaxb.db.ThreadWatchList}
314      */

315     com.mvnforum.jaxb.db.ThreadWatchList getThreadWatchList();
316
317     /**
318      * Sets the value of the threadWatchList property.
319      *
320      * @param value
321      * allowed object is
322      * {@link com.mvnforum.jaxb.db.ThreadWatchList}
323      */

324     void setThreadWatchList(com.mvnforum.jaxb.db.ThreadWatchList value);
325
326     /**
327      * Gets the value of the threadViewCount property.
328      *
329      */

330     int getThreadViewCount();
331
332     /**
333      * Sets the value of the threadViewCount property.
334      *
335      */

336     void setThreadViewCount(int value);
337
338 }
339
Popular Tags