KickJava   Java API By Example, From Geeks To Geeks.

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


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.29 at 03:19:11 PM GMT+07:00
6
//
7

8
9 package com.mvnforum.jaxb.db;
10
11
12 /**
13  * Java content class for MessageType 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 353)
15  * <p>
16  * <pre>
17  * &lt;complexType name="MessageType">
18  * &lt;complexContent>
19  * &lt;restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
20  * &lt;sequence>
21  * &lt;element name="FolderName" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
22  * &lt;element name="MessageSenderName" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
23  * &lt;element name="MessageToList" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
24  * &lt;element name="MessageCcList" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
25  * &lt;element name="MessageBccList" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
26  * &lt;element name="MessageTopic" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
27  * &lt;element name="MessageBody" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
28  * &lt;element name="MessageType" type="{http://www.w3.org/2001/XMLSchema}int" minOccurs="0"/>
29  * &lt;element name="MessageOption" type="{http://www.w3.org/2001/XMLSchema}int" minOccurs="0"/>
30  * &lt;element name="MessageStatus" type="{http://www.w3.org/2001/XMLSchema}int" minOccurs="0"/>
31  * &lt;element name="MessageReadStatus" type="{http://www.w3.org/2001/XMLSchema}int" minOccurs="0"/>
32  * &lt;element name="MessageNotify" type="{http://www.w3.org/2001/XMLSchema}int" minOccurs="0"/>
33  * &lt;element name="MessageIcon" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
34  * &lt;element name="MessageAttachCount" type="{http://www.w3.org/2001/XMLSchema}int" minOccurs="0"/>
35  * &lt;element name="MessageIP" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
36  * &lt;element name="MessageCreationDate" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
37  * &lt;/sequence>
38  * &lt;/restriction>
39  * &lt;/complexContent>
40  * &lt;/complexType>
41  * </pre>
42  *
43  */

44 public interface MessageType {
45
46
47     /**
48      * Gets the value of the messageReadStatus property.
49      *
50      */

51     int getMessageReadStatus();
52
53     /**
54      * Sets the value of the messageReadStatus property.
55      *
56      */

57     void setMessageReadStatus(int value);
58
59     /**
60      * Gets the value of the messageIP property.
61      *
62      * @return
63      * possible object is
64      * {@link java.lang.String}
65      */

66     java.lang.String JavaDoc getMessageIP();
67
68     /**
69      * Sets the value of the messageIP property.
70      *
71      * @param value
72      * allowed object is
73      * {@link java.lang.String}
74      */

75     void setMessageIP(java.lang.String JavaDoc value);
76
77     /**
78      * Gets the value of the messageOption property.
79      *
80      */

81     int getMessageOption();
82
83     /**
84      * Sets the value of the messageOption property.
85      *
86      */

87     void setMessageOption(int value);
88
89     /**
90      * Gets the value of the messageStatus property.
91      *
92      */

93     int getMessageStatus();
94
95     /**
96      * Sets the value of the messageStatus property.
97      *
98      */

99     void setMessageStatus(int value);
100
101     /**
102      * Gets the value of the messageBody property.
103      *
104      * @return
105      * possible object is
106      * {@link java.lang.String}
107      */

108     java.lang.String JavaDoc getMessageBody();
109
110     /**
111      * Sets the value of the messageBody property.
112      *
113      * @param value
114      * allowed object is
115      * {@link java.lang.String}
116      */

117     void setMessageBody(java.lang.String JavaDoc value);
118
119     /**
120      * Gets the value of the messageBccList property.
121      *
122      * @return
123      * possible object is
124      * {@link java.lang.String}
125      */

126     java.lang.String JavaDoc getMessageBccList();
127
128     /**
129      * Sets the value of the messageBccList property.
130      *
131      * @param value
132      * allowed object is
133      * {@link java.lang.String}
134      */

135     void setMessageBccList(java.lang.String JavaDoc value);
136
137     /**
138      * Gets the value of the folderName property.
139      *
140      * @return
141      * possible object is
142      * {@link java.lang.String}
143      */

144     java.lang.String JavaDoc getFolderName();
145
146     /**
147      * Sets the value of the folderName property.
148      *
149      * @param value
150      * allowed object is
151      * {@link java.lang.String}
152      */

153     void setFolderName(java.lang.String JavaDoc value);
154
155     /**
156      * Gets the value of the messageTopic property.
157      *
158      * @return
159      * possible object is
160      * {@link java.lang.String}
161      */

162     java.lang.String JavaDoc getMessageTopic();
163
164     /**
165      * Sets the value of the messageTopic property.
166      *
167      * @param value
168      * allowed object is
169      * {@link java.lang.String}
170      */

171     void setMessageTopic(java.lang.String JavaDoc value);
172
173     /**
174      * Gets the value of the messageSenderName property.
175      *
176      * @return
177      * possible object is
178      * {@link java.lang.String}
179      */

180     java.lang.String JavaDoc getMessageSenderName();
181
182     /**
183      * Sets the value of the messageSenderName property.
184      *
185      * @param value
186      * allowed object is
187      * {@link java.lang.String}
188      */

189     void setMessageSenderName(java.lang.String JavaDoc value);
190
191     /**
192      * Gets the value of the messageCcList property.
193      *
194      * @return
195      * possible object is
196      * {@link java.lang.String}
197      */

198     java.lang.String JavaDoc getMessageCcList();
199
200     /**
201      * Sets the value of the messageCcList property.
202      *
203      * @param value
204      * allowed object is
205      * {@link java.lang.String}
206      */

207     void setMessageCcList(java.lang.String JavaDoc value);
208
209     /**
210      * Gets the value of the messageCreationDate property.
211      *
212      * @return
213      * possible object is
214      * {@link java.lang.String}
215      */

216     java.lang.String JavaDoc getMessageCreationDate();
217
218     /**
219      * Sets the value of the messageCreationDate property.
220      *
221      * @param value
222      * allowed object is
223      * {@link java.lang.String}
224      */

225     void setMessageCreationDate(java.lang.String JavaDoc value);
226
227     /**
228      * Gets the value of the messageAttachCount property.
229      *
230      */

231     int getMessageAttachCount();
232
233     /**
234      * Sets the value of the messageAttachCount property.
235      *
236      */

237     void setMessageAttachCount(int value);
238
239     /**
240      * Gets the value of the messageType property.
241      *
242      */

243     int getMessageType();
244
245     /**
246      * Sets the value of the messageType property.
247      *
248      */

249     void setMessageType(int value);
250
251     /**
252      * Gets the value of the messageIcon property.
253      *
254      * @return
255      * possible object is
256      * {@link java.lang.String}
257      */

258     java.lang.String JavaDoc getMessageIcon();
259
260     /**
261      * Sets the value of the messageIcon property.
262      *
263      * @param value
264      * allowed object is
265      * {@link java.lang.String}
266      */

267     void setMessageIcon(java.lang.String JavaDoc value);
268
269     /**
270      * Gets the value of the messageNotify property.
271      *
272      */

273     int getMessageNotify();
274
275     /**
276      * Sets the value of the messageNotify property.
277      *
278      */

279     void setMessageNotify(int value);
280
281     /**
282      * Gets the value of the messageToList property.
283      *
284      * @return
285      * possible object is
286      * {@link java.lang.String}
287      */

288     java.lang.String JavaDoc getMessageToList();
289
290     /**
291      * Sets the value of the messageToList property.
292      *
293      * @param value
294      * allowed object is
295      * {@link java.lang.String}
296      */

297     void setMessageToList(java.lang.String JavaDoc value);
298
299 }
300
Popular Tags