KickJava   Java API By Example, From Geeks To Geeks.

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


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.Dummy;
9
10
11 /**
12  * <p>Java class for dummy complex type.
13  *
14  * <p>The following schema fragment specifies the expected content contained within this class.
15  *
16  * <pre>
17  * &lt;complexType name="dummy">
18  * &lt;complexContent>
19  * &lt;restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
20  * &lt;sequence>
21  * &lt;element name="arg0" type="{http://availability.services.agency.rentacar.objectweb.org/}carDeLuxeVO" minOccurs="0"/>
22  * &lt;/sequence>
23  * &lt;/restriction>
24  * &lt;/complexContent>
25  * &lt;/complexType>
26  * </pre>
27  *
28  *
29  */

30 @XmlAccessorType(AccessType.FIELD)
31 @XmlType(name = "dummy", propOrder = {
32     "arg0"
33 })
34 public class Dummy {
35
36     protected CarDeLuxeVO arg0;
37
38     /**
39      * Gets the value of the arg0 property.
40      *
41      * @return
42      * possible object is
43      * {@link CarDeLuxeVO }
44      *
45      */

46     public CarDeLuxeVO getArg0() {
47         return arg0;
48     }
49
50     /**
51      * Sets the value of the arg0 property.
52      *
53      * @param value
54      * allowed object is
55      * {@link CarDeLuxeVO }
56      *
57      */

58     public void setArg0(CarDeLuxeVO value) {
59         this.arg0 = value;
60     }
61
62 }
63
Popular Tags