KickJava   Java API By Example, From Geeks To Geeks.

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


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 FavoriteThreadType 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 228)
15  * <p>
16  * <pre>
17  * &lt;complexType name="FavoriteThreadType">
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"/>
22  * &lt;element name="FavoriteCreationDate" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
23  * &lt;element name="FavoriteType" type="{http://www.w3.org/2001/XMLSchema}int" minOccurs="0"/>
24  * &lt;element name="FavoriteOption" type="{http://www.w3.org/2001/XMLSchema}int" minOccurs="0"/>
25  * &lt;element name="FavoriteStatus" type="{http://www.w3.org/2001/XMLSchema}int" minOccurs="0"/>
26  * &lt;/sequence>
27  * &lt;/restriction>
28  * &lt;/complexContent>
29  * &lt;/complexType>
30  * </pre>
31  *
32  */

33 public interface FavoriteThreadType {
34
35
36     /**
37      * Gets the value of the favoriteStatus property.
38      *
39      */

40     int getFavoriteStatus();
41
42     /**
43      * Sets the value of the favoriteStatus property.
44      *
45      */

46     void setFavoriteStatus(int value);
47
48     /**
49      * Gets the value of the favoriteCreationDate property.
50      *
51      * @return
52      * possible object is
53      * {@link java.lang.String}
54      */

55     java.lang.String JavaDoc getFavoriteCreationDate();
56
57     /**
58      * Sets the value of the favoriteCreationDate property.
59      *
60      * @param value
61      * allowed object is
62      * {@link java.lang.String}
63      */

64     void setFavoriteCreationDate(java.lang.String JavaDoc value);
65
66     /**
67      * Gets the value of the favoriteType property.
68      *
69      */

70     int getFavoriteType();
71
72     /**
73      * Sets the value of the favoriteType property.
74      *
75      */

76     void setFavoriteType(int value);
77
78     /**
79      * Gets the value of the memberName property.
80      *
81      * @return
82      * possible object is
83      * {@link java.lang.String}
84      */

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

94     void setMemberName(java.lang.String JavaDoc value);
95
96     /**
97      * Gets the value of the favoriteOption property.
98      *
99      */

100     int getFavoriteOption();
101
102     /**
103      * Sets the value of the favoriteOption property.
104      *
105      */

106     void setFavoriteOption(int value);
107
108 }
109
Popular Tags