KickJava   Java API By Example, From Geeks To Geeks.

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


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 ThreadWatchType 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 210)
15  * <p>
16  * <pre>
17  * &lt;complexType name="ThreadWatchType">
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="WatchType" type="{http://www.w3.org/2001/XMLSchema}int" minOccurs="0"/>
23  * &lt;element name="WatchOption" type="{http://www.w3.org/2001/XMLSchema}int" minOccurs="0"/>
24  * &lt;element name="WatchStatus" type="{http://www.w3.org/2001/XMLSchema}int" minOccurs="0"/>
25  * &lt;element name="WatchCreationDate" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
26  * &lt;element name="WatchLastSentDate" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
27  * &lt;element name="WatchEndDate" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
28  * &lt;/sequence>
29  * &lt;/restriction>
30  * &lt;/complexContent>
31  * &lt;/complexType>
32  * </pre>
33  *
34  */

35 public interface ThreadWatchType {
36
37
38     /**
39      * Gets the value of the watchCreationDate property.
40      *
41      * @return
42      * possible object is
43      * {@link java.lang.String}
44      */

45     java.lang.String JavaDoc getWatchCreationDate();
46
47     /**
48      * Sets the value of the watchCreationDate property.
49      *
50      * @param value
51      * allowed object is
52      * {@link java.lang.String}
53      */

54     void setWatchCreationDate(java.lang.String JavaDoc value);
55
56     /**
57      * Gets the value of the watchLastSentDate property.
58      *
59      * @return
60      * possible object is
61      * {@link java.lang.String}
62      */

63     java.lang.String JavaDoc getWatchLastSentDate();
64
65     /**
66      * Sets the value of the watchLastSentDate property.
67      *
68      * @param value
69      * allowed object is
70      * {@link java.lang.String}
71      */

72     void setWatchLastSentDate(java.lang.String JavaDoc value);
73
74     /**
75      * Gets the value of the watchEndDate property.
76      *
77      * @return
78      * possible object is
79      * {@link java.lang.String}
80      */

81     java.lang.String JavaDoc getWatchEndDate();
82
83     /**
84      * Sets the value of the watchEndDate property.
85      *
86      * @param value
87      * allowed object is
88      * {@link java.lang.String}
89      */

90     void setWatchEndDate(java.lang.String JavaDoc value);
91
92     /**
93      * Gets the value of the watchType property.
94      *
95      */

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

102     void setWatchType(int value);
103
104     /**
105      * Gets the value of the memberName property.
106      *
107      * @return
108      * possible object is
109      * {@link java.lang.String}
110      */

111     java.lang.String JavaDoc getMemberName();
112
113     /**
114      * Sets the value of the memberName property.
115      *
116      * @param value
117      * allowed object is
118      * {@link java.lang.String}
119      */

120     void setMemberName(java.lang.String JavaDoc value);
121
122     /**
123      * Gets the value of the watchOption property.
124      *
125      */

126     int getWatchOption();
127
128     /**
129      * Sets the value of the watchOption property.
130      *
131      */

132     void setWatchOption(int value);
133
134     /**
135      * Gets the value of the watchStatus property.
136      *
137      */

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

144     void setWatchStatus(int value);
145
146 }
147
Popular Tags