KickJava   Java API By Example, From Geeks To Geeks.

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


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 anonymous 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 5)
15  * <p>
16  * <pre>
17  * &lt;complexType>
18  * &lt;complexContent>
19  * &lt;restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
20  * &lt;sequence>
21  * &lt;element name="GroupList" minOccurs="0">
22  * &lt;complexType>
23  * &lt;complexContent>
24  * &lt;restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
25  * &lt;sequence>
26  * &lt;element name="Group" type="{}GroupType" maxOccurs="unbounded" minOccurs="0"/>
27  * &lt;/sequence>
28  * &lt;/restriction>
29  * &lt;/complexContent>
30  * &lt;/complexType>
31  * &lt;/element>
32  * &lt;element name="RankList" minOccurs="0">
33  * &lt;complexType>
34  * &lt;complexContent>
35  * &lt;restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
36  * &lt;sequence>
37  * &lt;element name="Rank" type="{}RankType" maxOccurs="unbounded" minOccurs="0"/>
38  * &lt;/sequence>
39  * &lt;/restriction>
40  * &lt;/complexContent>
41  * &lt;/complexType>
42  * &lt;/element>
43  * &lt;element name="CategoryList" type="{}CategoryListType" minOccurs="0"/>
44  * &lt;element name="MemberList" minOccurs="0">
45  * &lt;complexType>
46  * &lt;complexContent>
47  * &lt;restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
48  * &lt;sequence>
49  * &lt;element name="Member" type="{}MemberType" maxOccurs="unbounded" minOccurs="0"/>
50  * &lt;/sequence>
51  * &lt;/restriction>
52  * &lt;/complexContent>
53  * &lt;/complexType>
54  * &lt;/element>
55  * &lt;/sequence>
56  * &lt;/restriction>
57  * &lt;/complexContent>
58  * &lt;/complexType>
59  * </pre>
60  *
61  */

62 public interface MvnforumType {
63
64
65     /**
66      * Gets the value of the groupList property.
67      *
68      * @return
69      * possible object is
70      * {@link com.mvnforum.jaxb.db.MvnforumType.GroupListType}
71      */

72     com.mvnforum.jaxb.db.MvnforumType.GroupListType getGroupList();
73
74     /**
75      * Sets the value of the groupList property.
76      *
77      * @param value
78      * allowed object is
79      * {@link com.mvnforum.jaxb.db.MvnforumType.GroupListType}
80      */

81     void setGroupList(com.mvnforum.jaxb.db.MvnforumType.GroupListType value);
82
83     /**
84      * Gets the value of the categoryList property.
85      *
86      * @return
87      * possible object is
88      * {@link com.mvnforum.jaxb.db.CategoryListType}
89      */

90     com.mvnforum.jaxb.db.CategoryListType getCategoryList();
91
92     /**
93      * Sets the value of the categoryList property.
94      *
95      * @param value
96      * allowed object is
97      * {@link com.mvnforum.jaxb.db.CategoryListType}
98      */

99     void setCategoryList(com.mvnforum.jaxb.db.CategoryListType value);
100
101     /**
102      * Gets the value of the rankList property.
103      *
104      * @return
105      * possible object is
106      * {@link com.mvnforum.jaxb.db.MvnforumType.RankListType}
107      */

108     com.mvnforum.jaxb.db.MvnforumType.RankListType getRankList();
109
110     /**
111      * Sets the value of the rankList property.
112      *
113      * @param value
114      * allowed object is
115      * {@link com.mvnforum.jaxb.db.MvnforumType.RankListType}
116      */

117     void setRankList(com.mvnforum.jaxb.db.MvnforumType.RankListType value);
118
119     /**
120      * Gets the value of the memberList property.
121      *
122      * @return
123      * possible object is
124      * {@link com.mvnforum.jaxb.db.MvnforumType.MemberListType}
125      */

126     com.mvnforum.jaxb.db.MvnforumType.MemberListType getMemberList();
127
128     /**
129      * Sets the value of the memberList property.
130      *
131      * @param value
132      * allowed object is
133      * {@link com.mvnforum.jaxb.db.MvnforumType.MemberListType}
134      */

135     void setMemberList(com.mvnforum.jaxb.db.MvnforumType.MemberListType value);
136
137
138     /**
139      * Java content class for anonymous complex type.
140      * <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 8)
141      * <p>
142      * <pre>
143      * &lt;complexType>
144      * &lt;complexContent>
145      * &lt;restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
146      * &lt;sequence>
147      * &lt;element name="Group" type="{}GroupType" maxOccurs="unbounded" minOccurs="0"/>
148      * &lt;/sequence>
149      * &lt;/restriction>
150      * &lt;/complexContent>
151      * &lt;/complexType>
152      * </pre>
153      *
154      */

155     public interface GroupListType {
156
157
158         /**
159          * Gets the value of the Group property.
160          *
161          * <p>
162          * This accessor method returns a reference to the live list,
163          * not a snapshot. Therefore any modification you make to the
164          * returned list will be present inside the JAXB object.
165          * This is why there is not a <CODE>set</CODE> method for the Group property.
166          *
167          * <p>
168          * For example, to add a new item, do as follows:
169          * <pre>
170          * getGroup().add(newItem);
171          * </pre>
172          *
173          *
174          * <p>
175          * Objects of the following type(s) are allowed in the list
176          * {@link com.mvnforum.jaxb.db.GroupType}
177          *
178          */

179         java.util.List JavaDoc getGroup();
180
181     }
182
183
184     /**
185      * Java content class for anonymous complex type.
186      * <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 29)
187      * <p>
188      * <pre>
189      * &lt;complexType>
190      * &lt;complexContent>
191      * &lt;restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
192      * &lt;sequence>
193      * &lt;element name="Member" type="{}MemberType" maxOccurs="unbounded" minOccurs="0"/>
194      * &lt;/sequence>
195      * &lt;/restriction>
196      * &lt;/complexContent>
197      * &lt;/complexType>
198      * </pre>
199      *
200      */

201     public interface MemberListType {
202
203
204         /**
205          * Gets the value of the Member property.
206          *
207          * <p>
208          * This accessor method returns a reference to the live list,
209          * not a snapshot. Therefore any modification you make to the
210          * returned list will be present inside the JAXB object.
211          * This is why there is not a <CODE>set</CODE> method for the Member property.
212          *
213          * <p>
214          * For example, to add a new item, do as follows:
215          * <pre>
216          * getMember().add(newItem);
217          * </pre>
218          *
219          *
220          * <p>
221          * Objects of the following type(s) are allowed in the list
222          * {@link com.mvnforum.jaxb.db.MemberType}
223          *
224          */

225         java.util.List JavaDoc getMember();
226
227     }
228
229
230     /**
231      * Java content class for anonymous complex type.
232      * <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 19)
233      * <p>
234      * <pre>
235      * &lt;complexType>
236      * &lt;complexContent>
237      * &lt;restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
238      * &lt;sequence>
239      * &lt;element name="Rank" type="{}RankType" maxOccurs="unbounded" minOccurs="0"/>
240      * &lt;/sequence>
241      * &lt;/restriction>
242      * &lt;/complexContent>
243      * &lt;/complexType>
244      * </pre>
245      *
246      */

247     public interface RankListType {
248
249
250         /**
251          * Gets the value of the Rank property.
252          *
253          * <p>
254          * This accessor method returns a reference to the live list,
255          * not a snapshot. Therefore any modification you make to the
256          * returned list will be present inside the JAXB object.
257          * This is why there is not a <CODE>set</CODE> method for the Rank property.
258          *
259          * <p>
260          * For example, to add a new item, do as follows:
261          * <pre>
262          * getRank().add(newItem);
263          * </pre>
264          *
265          *
266          * <p>
267          * Objects of the following type(s) are allowed in the list
268          * {@link com.mvnforum.jaxb.db.RankType}
269          *
270          */

271         java.util.List JavaDoc getRank();
272
273     }
274
275 }
276
Popular Tags