KickJava   Java API By Example, From Geeks To Geeks.

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


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

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

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

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

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

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

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

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

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

101     void setWatchType(int value);
102
103     /**
104      * Gets the value of the watchOption property.
105      *
106      */

107     int getWatchOption();
108
109     /**
110      * Sets the value of the watchOption property.
111      *
112      */

113     void setWatchOption(int value);
114
115     /**
116      * Gets the value of the watchStatus property.
117      *
118      */

119     int getWatchStatus();
120
121     /**
122      * Sets the value of the watchStatus property.
123      *
124      */

125     void setWatchStatus(int value);
126
127 }
128
Popular Tags