// // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.3-hudson-jaxb-ri-2.2.3-3- // 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: 2011.06.10 at 06:39:45 PM IST // package org.milyn.javabean.jaxb.model; 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.XmlSchemaType; import javax.xml.bind.annotation.XmlType; import javax.xml.bind.annotation.adapters.XmlJavaTypeAdapter; import javax.xml.datatype.XMLGregorianCalendar; import java.math.BigDecimal; import java.util.List; import java.util.Vector; /** * <p>Java class for Items complex type. * * <p>The following schema fragment specifies the expected content contained within this class. * * <pre> * <complexType name="Items"> * <complexContent> * <restriction base="{http://www.w3.org/2001/XMLSchema}anyType"> * <sequence> * <element name="item" maxOccurs="unbounded"> * <complexType> * <complexContent> * <restriction base="{http://www.w3.org/2001/XMLSchema}anyType"> * <sequence> * <element name="productName" type="{http://www.w3.org/2001/XMLSchema}string"/> * <element name="quantity"> * <simpleType> * <restriction base="{http://www.w3.org/2001/XMLSchema}positiveInteger"> * <maxExclusive value="100"/> * </restriction> * </simpleType> * </element> * <element name="USPrice" type="{http://www.w3.org/2001/XMLSchema}decimal"/> * <element ref="{}comment" minOccurs="0"/> * <element name="shipDate" type="{http://www.w3.org/2001/XMLSchema}date" minOccurs="0"/> * </sequence> * <attribute name="partNum" use="required" type="{}SKU" /> * </restriction> * </complexContent> * </complexType> * </element> * </sequence> * </restriction> * </complexContent> * </complexType> * </pre> * * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "Items", propOrder = { "item" }) public class Items { @XmlElement(required = true) protected List<Item> item = new Vector<Item>(); /** * Gets the value of the item property. * * <p> * This accessor method returns a reference to the live list, * not a snapshot. Therefore any modification you make to the * returned list will be present inside the JAXB object. * This is why there is not a <CODE>set</CODE> method for the item property. * * <p> * For example, to add a new item, do as follows: * <pre> * getItem().add(newItem); * </pre> * * * <p> * Objects of the following type(s) are allowed in the list * {@link Items.Item } * * */ public List<Item> getItem() { if (item == null) { item = new Vector<Item>(); } return this.item; } /** * <p>Java class for anonymous complex type. * * <p>The following schema fragment specifies the expected content contained within this class. * * <pre> * <complexType> * <complexContent> * <restriction base="{http://www.w3.org/2001/XMLSchema}anyType"> * <sequence> * <element name="productName" type="{http://www.w3.org/2001/XMLSchema}string"/> * <element name="quantity"> * <simpleType> * <restriction base="{http://www.w3.org/2001/XMLSchema}positiveInteger"> * <maxExclusive value="100"/> * </restriction> * </simpleType> * </element> * <element name="USPrice" type="{http://www.w3.org/2001/XMLSchema}decimal"/> * <element ref="{}comment" minOccurs="0"/> * <element name="shipDate" type="{http://www.w3.org/2001/XMLSchema}date" minOccurs="0"/> * </sequence> * <attribute name="partNum" use="required" type="{}SKU" /> * </restriction> * </complexContent> * </complexType> * </pre> * * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "", propOrder = { "productName", "quantity", "price", "comment", "shipDate" }) public static class Item { @XmlElement(required = true) protected String productName; @XmlElement(required = true, type = String.class, defaultValue = "10") @XmlJavaTypeAdapter(Adapter2.class) protected Short quantity; @XmlElement(name = "USPrice", required = true) protected BigDecimal price; protected String comment; @XmlSchemaType(name = "date") protected XMLGregorianCalendar shipDate; @XmlAttribute(name = "partNum", required = true) protected String partNumber; /** * Gets the value of the productName property. * * @return * possible object is * {@link String } * */ public String getProductName() { return productName; } /** * Sets the value of the productName property. * * @param value * allowed object is * {@link String } * */ public void setProductName(String value) { this.productName = value; } /** * Gets the value of the quantity property. * * @return * possible object is * {@link String } * */ public Short getQuantity() { return quantity; } /** * Sets the value of the quantity property. * * @param value * allowed object is * {@link String } * */ public void setQuantity(Short value) { this.quantity = value; } public boolean isSetQuantity() { return (this.quantity!= null); } /** * Gets the value of the price property. * * @return * possible object is * {@link java.math.BigDecimal } * */ public BigDecimal getPrice() { return price; } /** * Sets the value of the price property. * * @param value * allowed object is * {@link java.math.BigDecimal } * */ public void setPrice(BigDecimal value) { this.price = 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 shipDate property. * * @return * possible object is * {@link javax.xml.datatype.XMLGregorianCalendar } * */ public XMLGregorianCalendar getShipDate() { return shipDate; } /** * Sets the value of the shipDate property. * * @param value * allowed object is * {@link javax.xml.datatype.XMLGregorianCalendar } * */ public void setShipDate(XMLGregorianCalendar value) { this.shipDate = value; } /** * Gets the value of the partNumber property. * * @return * possible object is * {@link String } * */ public String getPartNumber() { return partNumber; } /** * Sets the value of the partNumber property. * * @param value * allowed object is * {@link String } * */ public void setPartNumber(String value) { this.partNumber = value; } } }