01: //
02: // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.0.2-b01-fcs
03: // See <a href="http://java.sun.com/xml/jaxb">http://java.sun.com/xml/jaxb</a>
04: // Any modifications to this file will be lost upon recompilation of the source schema.
05: // Generated on: 2007.04.25 at 05:19:54 PM EDT
06: //
07:
08: package org.apache.greeter_control;
09:
10: import javax.xml.bind.annotation.XmlAccessType;
11: import javax.xml.bind.annotation.XmlAccessorType;
12: import javax.xml.bind.annotation.XmlRootElement;
13: import javax.xml.bind.annotation.XmlType;
14:
15: /**
16: * <p>Java class for anonymous complex type.
17: *
18: * <p>The following schema fragment specifies the expected content contained within this class.
19: *
20: * <pre>
21: * <complexType>
22: * <complexContent>
23: * <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
24: * <sequence>
25: * <element name="minor" type="{http://www.w3.org/2001/XMLSchema}short"/>
26: * <element name="major" type="{http://www.w3.org/2001/XMLSchema}short"/>
27: * </sequence>
28: * </restriction>
29: * </complexContent>
30: * </complexType>
31: * </pre>
32: *
33: *
34: */
35: @XmlAccessorType(XmlAccessType.FIELD)
36: @XmlType(name="",propOrder={"minor","major"})
37: @XmlRootElement(name="faultDetail")
38: public class FaultDetail {
39:
40: protected short minor;
41: protected short major;
42:
43: /**
44: * Gets the value of the minor property.
45: *
46: */
47: public short getMinor() {
48: return minor;
49: }
50:
51: /**
52: * Sets the value of the minor property.
53: *
54: */
55: public void setMinor(short value) {
56: this .minor = value;
57: }
58:
59: /**
60: * Gets the value of the major property.
61: *
62: */
63: public short getMajor() {
64: return major;
65: }
66:
67: /**
68: * Sets the value of the major property.
69: *
70: */
71: public void setMajor(short value) {
72: this.major = value;
73: }
74:
75: }
|