// // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.0-hudson-3037-ea3 // See <a href="http://java.sun.com/xml/jaxb">http://java.sun.com/xml/jaxb</a> // Any modifications to this file will be lost upon recompilation of the source schema. // Generated on: 2006.10.31 at 03:24:08 PM PST // package org.geotools.po; import javax.xml.bind.annotation.AccessType; 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; import org.geotools.po.Items; import org.geotools.po.PurchaseOrderType; import org.geotools.po.USAddress; /** * <p>Java class for PurchaseOrderType complex type. * * <p>The following schema fragment specifies the expected content contained within this class. * * <pre> * <complexType name="PurchaseOrderType"> * <complexContent> * <restriction base="{http://www.w3.org/2001/XMLSchema}anyType"> * <sequence> * <element name="shipTo" type="{http://www.geotools.org/po}USAddress"/> * <element name="billTo" type="{http://www.geotools.org/po}USAddress"/> * <element ref="{http://www.geotools.org/po}comment" minOccurs="0"/> * <element name="items" type="{http://www.geotools.org/po}Items"/> * </sequence> * <attribute name="orderDate" type="{http://www.w3.org/2001/XMLSchema}date" /> * </restriction> * </complexContent> * </complexType> * </pre> * * */ @XmlAccessorType(AccessType.FIELD) @XmlType(name = "PurchaseOrderType", propOrder = { "shipTo", "billTo", "comment", "items" }) public class PurchaseOrderType { protected USAddress shipTo; protected USAddress billTo; @XmlElement(namespace = "http://www.geotools.org/po") protected String comment; 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; } }