KickJava   Java API By Example, From Geeks To Geeks.

Java > Open Source Codes > org > objectweb > rentacar > services > client > CarDeLuxeVO


1
2 package org.objectweb.rentacar.services.client;
3
4 import javax.xml.bind.annotation.AccessType;
5 import javax.xml.bind.annotation.XmlAccessorType;
6 import javax.xml.bind.annotation.XmlType;
7 import org.objectweb.rentacar.services.client.CarDeLuxeVO;
8 import org.objectweb.rentacar.services.client.CarVO;
9
10
11 /**
12  * <p>Java class for carDeLuxeVO complex type.
13  *
14  * <p>The following schema fragment specifies the expected content contained within this class.
15  *
16  * <pre>
17  * &lt;complexType name="carDeLuxeVO">
18  * &lt;complexContent>
19  * &lt;extension base="{http://availability.services.agency.rentacar.objectweb.org/}carVO">
20  * &lt;sequence>
21  * &lt;element name="fridge" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
22  * &lt;element name="smallBar" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
23  * &lt;element name="swimingpool" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
24  * &lt;element name="television" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
25  * &lt;/sequence>
26  * &lt;/extension>
27  * &lt;/complexContent>
28  * &lt;/complexType>
29  * </pre>
30  *
31  *
32  */

33 @XmlAccessorType(AccessType.FIELD)
34 @XmlType(name = "carDeLuxeVO", propOrder = {
35     "fridge",
36     "smallBar",
37     "swimingpool",
38     "television"
39 })
40 public class CarDeLuxeVO
41     extends CarVO
42 {
43
44     protected String JavaDoc fridge;
45     protected String JavaDoc smallBar;
46     protected String JavaDoc swimingpool;
47     protected String JavaDoc television;
48
49     /**
50      * Gets the value of the fridge property.
51      *
52      * @return
53      * possible object is
54      * {@link String }
55      *
56      */

57     public String JavaDoc getFridge() {
58         return fridge;
59     }
60
61     /**
62      * Sets the value of the fridge property.
63      *
64      * @param value
65      * allowed object is
66      * {@link String }
67      *
68      */

69     public void setFridge(String JavaDoc value) {
70         this.fridge = value;
71     }
72
73     /**
74      * Gets the value of the smallBar property.
75      *
76      * @return
77      * possible object is
78      * {@link String }
79      *
80      */

81     public String JavaDoc getSmallBar() {
82         return smallBar;
83     }
84
85     /**
86      * Sets the value of the smallBar property.
87      *
88      * @param value
89      * allowed object is
90      * {@link String }
91      *
92      */

93     public void setSmallBar(String JavaDoc value) {
94         this.smallBar = value;
95     }
96
97     /**
98      * Gets the value of the swimingpool property.
99      *
100      * @return
101      * possible object is
102      * {@link String }
103      *
104      */

105     public String JavaDoc getSwimingpool() {
106         return swimingpool;
107     }
108
109     /**
110      * Sets the value of the swimingpool property.
111      *
112      * @param value
113      * allowed object is
114      * {@link String }
115      *
116      */

117     public void setSwimingpool(String JavaDoc value) {
118         this.swimingpool = value;
119     }
120
121     /**
122      * Gets the value of the television property.
123      *
124      * @return
125      * possible object is
126      * {@link String }
127      *
128      */

129     public String JavaDoc getTelevision() {
130         return television;
131     }
132
133     /**
134      * Sets the value of the television property.
135      *
136      * @param value
137      * allowed object is
138      * {@link String }
139      *
140      */

141     public void setTelevision(String JavaDoc value) {
142         this.television = value;
143     }
144
145 }
146
Popular Tags