KickJava   Java API By Example, From Geeks To Geeks.

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


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 CategoryType 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 85)
15  * <p>
16  * <pre>
17  * &lt;complexType name="CategoryType">
18  * &lt;complexContent>
19  * &lt;restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
20  * &lt;sequence>
21  * &lt;element name="CategoryName" type="{http://www.w3.org/2001/XMLSchema}string"/>
22  * &lt;element name="CategoryDesc" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
23  * &lt;element name="CategoryCreationDate" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
24  * &lt;element name="CategoryModifiedDate" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
25  * &lt;element name="CategoryOrder" type="{http://www.w3.org/2001/XMLSchema}int" minOccurs="0"/>
26  * &lt;element name="CategoryOption" type="{http://www.w3.org/2001/XMLSchema}int" minOccurs="0"/>
27  * &lt;element name="CategoryStatus" type="{http://www.w3.org/2001/XMLSchema}int" minOccurs="0"/>
28  * &lt;element name="CategoryWatchList" type="{}CategoryWatchList" minOccurs="0"/>
29  * &lt;element name="ForumList" type="{}ForumList" minOccurs="0"/>
30  * &lt;element name="CategoryList" type="{}CategoryListType" minOccurs="0"/>
31  * &lt;/sequence>
32  * &lt;/restriction>
33  * &lt;/complexContent>
34  * &lt;/complexType>
35  * </pre>
36  *
37  */

38 public interface CategoryType {
39
40
41     /**
42      * Gets the value of the forumList property.
43      *
44      * @return
45      * possible object is
46      * {@link com.mvnforum.jaxb.db.ForumList}
47      */

48     com.mvnforum.jaxb.db.ForumList getForumList();
49
50     /**
51      * Sets the value of the forumList property.
52      *
53      * @param value
54      * allowed object is
55      * {@link com.mvnforum.jaxb.db.ForumList}
56      */

57     void setForumList(com.mvnforum.jaxb.db.ForumList value);
58
59     /**
60      * Gets the value of the categoryWatchList property.
61      *
62      * @return
63      * possible object is
64      * {@link com.mvnforum.jaxb.db.CategoryWatchList}
65      */

66     com.mvnforum.jaxb.db.CategoryWatchList getCategoryWatchList();
67
68     /**
69      * Sets the value of the categoryWatchList property.
70      *
71      * @param value
72      * allowed object is
73      * {@link com.mvnforum.jaxb.db.CategoryWatchList}
74      */

75     void setCategoryWatchList(com.mvnforum.jaxb.db.CategoryWatchList value);
76
77     /**
78      * Gets the value of the categoryDesc property.
79      *
80      * @return
81      * possible object is
82      * {@link java.lang.String}
83      */

84     java.lang.String JavaDoc getCategoryDesc();
85
86     /**
87      * Sets the value of the categoryDesc property.
88      *
89      * @param value
90      * allowed object is
91      * {@link java.lang.String}
92      */

93     void setCategoryDesc(java.lang.String JavaDoc value);
94
95     /**
96      * Gets the value of the categoryList property.
97      *
98      * @return
99      * possible object is
100      * {@link com.mvnforum.jaxb.db.CategoryListType}
101      */

102     com.mvnforum.jaxb.db.CategoryListType getCategoryList();
103
104     /**
105      * Sets the value of the categoryList property.
106      *
107      * @param value
108      * allowed object is
109      * {@link com.mvnforum.jaxb.db.CategoryListType}
110      */

111     void setCategoryList(com.mvnforum.jaxb.db.CategoryListType value);
112
113     /**
114      * Gets the value of the categoryCreationDate property.
115      *
116      * @return
117      * possible object is
118      * {@link java.lang.String}
119      */

120     java.lang.String JavaDoc getCategoryCreationDate();
121
122     /**
123      * Sets the value of the categoryCreationDate property.
124      *
125      * @param value
126      * allowed object is
127      * {@link java.lang.String}
128      */

129     void setCategoryCreationDate(java.lang.String JavaDoc value);
130
131     /**
132      * Gets the value of the categoryName property.
133      *
134      * @return
135      * possible object is
136      * {@link java.lang.String}
137      */

138     java.lang.String JavaDoc getCategoryName();
139
140     /**
141      * Sets the value of the categoryName property.
142      *
143      * @param value
144      * allowed object is
145      * {@link java.lang.String}
146      */

147     void setCategoryName(java.lang.String JavaDoc value);
148
149     /**
150      * Gets the value of the categoryModifiedDate property.
151      *
152      * @return
153      * possible object is
154      * {@link java.lang.String}
155      */

156     java.lang.String JavaDoc getCategoryModifiedDate();
157
158     /**
159      * Sets the value of the categoryModifiedDate property.
160      *
161      * @param value
162      * allowed object is
163      * {@link java.lang.String}
164      */

165     void setCategoryModifiedDate(java.lang.String JavaDoc value);
166
167     /**
168      * Gets the value of the categoryOption property.
169      *
170      */

171     int getCategoryOption();
172
173     /**
174      * Sets the value of the categoryOption property.
175      *
176      */

177     void setCategoryOption(int value);
178
179     /**
180      * Gets the value of the categoryStatus property.
181      *
182      */

183     int getCategoryStatus();
184
185     /**
186      * Sets the value of the categoryStatus property.
187      *
188      */

189     void setCategoryStatus(int value);
190
191     /**
192      * Gets the value of the categoryOrder property.
193      *
194      */

195     int getCategoryOrder();
196
197     /**
198      * Sets the value of the categoryOrder property.
199      *
200      */

201     void setCategoryOrder(int value);
202
203 }
204
Popular Tags