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 30 @XmlAccessorType(AccessType.FIELD) 31 @XmlType(name = "dummy", propOrder = { 32 "arg0" 33 }) 34 public class Dummy { 35 36 protected CarDeLuxeVO arg0; 37 38 46 public CarDeLuxeVO getArg0() { 47 return arg0; 48 } 49 50 58 public void setArg0(CarDeLuxeVO value) { 59 this.arg0 = value; 60 } 61 62 } 63 | Popular Tags |