summaryrefslogtreecommitdiff
path: root/Year_3/TSDWL/WSDL/FootballClient/build/generated-sources/jax-ws/https/footballpool_dataaccess/TGameResult.java
blob: 18cf941296dbf0a430c9b66a44da674c0188b69b (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
package https.footballpool_dataaccess;

import javax.xml.bind.annotation.XmlAccessType;
import javax.xml.bind.annotation.XmlAccessorType;
import javax.xml.bind.annotation.XmlElement;
import javax.xml.bind.annotation.XmlType;


/**
 * <p>Java class for tGameResult complex type.
 * 
 * <p>The following schema fragment specifies the expected content contained within this class.
 * 
 * <pre>
 * &lt;complexType name="tGameResult">
 *   &lt;complexContent>
 *     &lt;restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
 *       &lt;sequence>
 *         &lt;element name="iGameNumber" type="{http://www.w3.org/2001/XMLSchema}int"/>
 *         &lt;element name="sDescription" type="{http://www.w3.org/2001/XMLSchema}string"/>
 *         &lt;element name="dtLocalPlayDateTime" type="{http://www.w3.org/2001/XMLSchema}string"/>
 *         &lt;element name="dtUTCPlayDateTime" type="{http://www.w3.org/2001/XMLSchema}string"/>
 *         &lt;element name="sTeamName1" type="{http://www.w3.org/2001/XMLSchema}string"/>
 *         &lt;element name="sTeamName2" type="{http://www.w3.org/2001/XMLSchema}string"/>
 *         &lt;element name="iScoreTeam1" type="{http://www.w3.org/2001/XMLSchema}int"/>
 *         &lt;element name="iScoreTeam2" type="{http://www.w3.org/2001/XMLSchema}int"/>
 *         &lt;element name="iRedCards" type="{http://www.w3.org/2001/XMLSchema}int"/>
 *         &lt;element name="iYellowCards" type="{http://www.w3.org/2001/XMLSchema}int"/>
 *         &lt;element name="sGroupCode" type="{http://www.w3.org/2001/XMLSchema}string"/>
 *         &lt;element name="bFinished" type="{http://www.w3.org/2001/XMLSchema}boolean"/>
 *         &lt;element name="iPenaltiesWonTeam1" type="{http://www.w3.org/2001/XMLSchema}int"/>
 *         &lt;element name="iPenaltiesWonTeam2" type="{http://www.w3.org/2001/XMLSchema}int"/>
 *       &lt;/sequence>
 *     &lt;/restriction>
 *   &lt;/complexContent>
 * &lt;/complexType>
 * </pre>
 * 
 * 
 */
@XmlAccessorType(XmlAccessType.FIELD)
@XmlType(name = "tGameResult", propOrder = {
    "iGameNumber",
    "sDescription",
    "dtLocalPlayDateTime",
    "dtUTCPlayDateTime",
    "sTeamName1",
    "sTeamName2",
    "iScoreTeam1",
    "iScoreTeam2",
    "iRedCards",
    "iYellowCards",
    "sGroupCode",
    "bFinished",
    "iPenaltiesWonTeam1",
    "iPenaltiesWonTeam2"
})
public class TGameResult {

    protected int iGameNumber;
    @XmlElement(required = true)
    protected String sDescription;
    @XmlElement(required = true)
    protected String dtLocalPlayDateTime;
    @XmlElement(required = true)
    protected String dtUTCPlayDateTime;
    @XmlElement(required = true)
    protected String sTeamName1;
    @XmlElement(required = true)
    protected String sTeamName2;
    protected int iScoreTeam1;
    protected int iScoreTeam2;
    protected int iRedCards;
    protected int iYellowCards;
    @XmlElement(required = true)
    protected String sGroupCode;
    protected boolean bFinished;
    protected int iPenaltiesWonTeam1;
    protected int iPenaltiesWonTeam2;

    /**
     * Gets the value of the iGameNumber property.
     * 
     */
    public int getIGameNumber() {
        return iGameNumber;
    }

    /**
     * Sets the value of the iGameNumber property.
     * 
     */
    public void setIGameNumber(int value) {
        this.iGameNumber = value;
    }

    /**
     * Gets the value of the sDescription property.
     * 
     * @return
     *     possible object is
     *     {@link String }
     *     
     */
    public String getSDescription() {
        return sDescription;
    }

    /**
     * Sets the value of the sDescription property.
     * 
     * @param value
     *     allowed object is
     *     {@link String }
     *     
     */
    public void setSDescription(String value) {
        this.sDescription = value;
    }

    /**
     * Gets the value of the dtLocalPlayDateTime property.
     * 
     * @return
     *     possible object is
     *     {@link String }
     *     
     */
    public String getDtLocalPlayDateTime() {
        return dtLocalPlayDateTime;
    }

    /**
     * Sets the value of the dtLocalPlayDateTime property.
     * 
     * @param value
     *     allowed object is
     *     {@link String }
     *     
     */
    public void setDtLocalPlayDateTime(String value) {
        this.dtLocalPlayDateTime = value;
    }

    /**
     * Gets the value of the dtUTCPlayDateTime property.
     * 
     * @return
     *     possible object is
     *     {@link String }
     *     
     */
    public String getDtUTCPlayDateTime() {
        return dtUTCPlayDateTime;
    }

    /**
     * Sets the value of the dtUTCPlayDateTime property.
     * 
     * @param value
     *     allowed object is
     *     {@link String }
     *     
     */
    public void setDtUTCPlayDateTime(String value) {
        this.dtUTCPlayDateTime = value;
    }

    /**
     * Gets the value of the sTeamName1 property.
     * 
     * @return
     *     possible object is
     *     {@link String }
     *     
     */
    public String getSTeamName1() {
        return sTeamName1;
    }

    /**
     * Sets the value of the sTeamName1 property.
     * 
     * @param value
     *     allowed object is
     *     {@link String }
     *     
     */
    public void setSTeamName1(String value) {
        this.sTeamName1 = value;
    }

    /**
     * Gets the value of the sTeamName2 property.
     * 
     * @return
     *     possible object is
     *     {@link String }
     *     
     */
    public String getSTeamName2() {
        return sTeamName2;
    }

    /**
     * Sets the value of the sTeamName2 property.
     * 
     * @param value
     *     allowed object is
     *     {@link String }
     *     
     */
    public void setSTeamName2(String value) {
        this.sTeamName2 = value;
    }

    /**
     * Gets the value of the iScoreTeam1 property.
     * 
     */
    public int getIScoreTeam1() {
        return iScoreTeam1;
    }

    /**
     * Sets the value of the iScoreTeam1 property.
     * 
     */
    public void setIScoreTeam1(int value) {
        this.iScoreTeam1 = value;
    }

    /**
     * Gets the value of the iScoreTeam2 property.
     * 
     */
    public int getIScoreTeam2() {
        return iScoreTeam2;
    }

    /**
     * Sets the value of the iScoreTeam2 property.
     * 
     */
    public void setIScoreTeam2(int value) {
        this.iScoreTeam2 = value;
    }

    /**
     * Gets the value of the iRedCards property.
     * 
     */
    public int getIRedCards() {
        return iRedCards;
    }

    /**
     * Sets the value of the iRedCards property.
     * 
     */
    public void setIRedCards(int value) {
        this.iRedCards = value;
    }

    /**
     * Gets the value of the iYellowCards property.
     * 
     */
    public int getIYellowCards() {
        return iYellowCards;
    }

    /**
     * Sets the value of the iYellowCards property.
     * 
     */
    public void setIYellowCards(int value) {
        this.iYellowCards = value;
    }

    /**
     * Gets the value of the sGroupCode property.
     * 
     * @return
     *     possible object is
     *     {@link String }
     *     
     */
    public String getSGroupCode() {
        return sGroupCode;
    }

    /**
     * Sets the value of the sGroupCode property.
     * 
     * @param value
     *     allowed object is
     *     {@link String }
     *     
     */
    public void setSGroupCode(String value) {
        this.sGroupCode = value;
    }

    /**
     * Gets the value of the bFinished property.
     * 
     */
    public boolean isBFinished() {
        return bFinished;
    }

    /**
     * Sets the value of the bFinished property.
     * 
     */
    public void setBFinished(boolean value) {
        this.bFinished = value;
    }

    /**
     * Gets the value of the iPenaltiesWonTeam1 property.
     * 
     */
    public int getIPenaltiesWonTeam1() {
        return iPenaltiesWonTeam1;
    }

    /**
     * Sets the value of the iPenaltiesWonTeam1 property.
     * 
     */
    public void setIPenaltiesWonTeam1(int value) {
        this.iPenaltiesWonTeam1 = value;
    }

    /**
     * Gets the value of the iPenaltiesWonTeam2 property.
     * 
     */
    public int getIPenaltiesWonTeam2() {
        return iPenaltiesWonTeam2;
    }

    /**
     * Sets the value of the iPenaltiesWonTeam2 property.
     * 
     */
    public void setIPenaltiesWonTeam2(int value) {
        this.iPenaltiesWonTeam2 = value;
    }

}