// // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.0.3-b01-fcs // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. // Generated on: 2008.01.22 at 09:21:32 AM EET // package com.example.myschema; import javax.xml.bind.annotation.XmlAccessType; import javax.xml.bind.annotation.XmlAccessorType; import javax.xml.bind.annotation.XmlAttribute; import javax.xml.bind.annotation.XmlElement; import javax.xml.bind.annotation.XmlType; import javax.xml.datatype.XMLGregorianCalendar; /** *

Java class for PurchaseOrderType complex type. * *

The following schema fragment specifies the expected content contained within this class. * *

 * <complexType name="PurchaseOrderType">
 *   <complexContent>
 *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
 *       <sequence>
 *         <element name="shipTo" type="{}USAddress"/>
 *         <element name="billTo" type="{}USAddress"/>
 *         <element ref="{}comment" minOccurs="0"/>
 *         <element name="items" type="{}Items"/>
 *       </sequence>
 *       <attribute name="orderDate" type="{http://www.w3.org/2001/XMLSchema}date" />
 *     </restriction>
 *   </complexContent>
 * </complexType>
 * 
* * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "PurchaseOrderType", propOrder = { "shipTo", "billTo", "comment", "items" }) public class PurchaseOrderType { @XmlElement(required = true) protected USAddress shipTo; @XmlElement(required = true) protected USAddress billTo; protected String comment; @XmlElement(required = true) protected Items items; @XmlAttribute protected XMLGregorianCalendar orderDate; /** * Gets the value of the shipTo property. * * @return * possible object is * {@link USAddress } * */ public USAddress getShipTo() { return shipTo; } /** * Sets the value of the shipTo property. * * @param value * allowed object is * {@link USAddress } * */ public void setShipTo(USAddress value) { this.shipTo = value; } /** * Gets the value of the billTo property. * * @return * possible object is * {@link USAddress } * */ public USAddress getBillTo() { return billTo; } /** * Sets the value of the billTo property. * * @param value * allowed object is * {@link USAddress } * */ public void setBillTo(USAddress value) { this.billTo = value; } /** * Gets the value of the comment property. * * @return * possible object is * {@link String } * */ public String getComment() { return comment; } /** * Sets the value of the comment property. * * @param value * allowed object is * {@link String } * */ public void setComment(String value) { this.comment = value; } /** * Gets the value of the items property. * * @return * possible object is * {@link Items } * */ public Items getItems() { return items; } /** * Sets the value of the items property. * * @param value * allowed object is * {@link Items } * */ public void setItems(Items value) { this.items = value; } /** * Gets the value of the orderDate property. * * @return * possible object is * {@link XMLGregorianCalendar } * */ public XMLGregorianCalendar getOrderDate() { return orderDate; } /** * Sets the value of the orderDate property. * * @param value * allowed object is * {@link XMLGregorianCalendar } * */ public void setOrderDate(XMLGregorianCalendar value) { this.orderDate = value; } }