Blame | Last modification | View Log | RSS feed
//// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, vJAXB 2.1.10 in JDK 6// 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: 2013.03.04 at 03:49:29 PM IST//package in.shop2020.feeds.products;import javax.xml.bind.annotation.XmlAccessType;import javax.xml.bind.annotation.XmlAccessorType;import javax.xml.bind.annotation.XmlElement;import javax.xml.bind.annotation.XmlRootElement;import javax.xml.bind.annotation.XmlType;/*** <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="ProductType">* <complexType>* <complexContent>* <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">* <choice>* <element ref="{}Food"/>* <element ref="{}HouseholdSupplies"/>* <element ref="{}Beverages"/>* <element ref="{}HardLiquor"/>* <element ref="{}AlcoholicBeverages"/>* <element ref="{}Wine"/>* </choice>* </restriction>* </complexContent>* </complexType>* </element>* </sequence>* </restriction>* </complexContent>* </complexType>* </pre>***/@XmlAccessorType(XmlAccessType.FIELD)@XmlType(name = "", propOrder = {"productType"})@XmlRootElement(name = "FoodAndBeverages")public class FoodAndBeverages {@XmlElement(name = "ProductType", required = true)protected FoodAndBeverages.ProductType productType;/*** Gets the value of the productType property.** @return* possible object is* {@link FoodAndBeverages.ProductType }**/public FoodAndBeverages.ProductType getProductType() {return productType;}/*** Sets the value of the productType property.** @param value* allowed object is* {@link FoodAndBeverages.ProductType }**/public void setProductType(FoodAndBeverages.ProductType value) {this.productType = value;}/*** <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">* <choice>* <element ref="{}Food"/>* <element ref="{}HouseholdSupplies"/>* <element ref="{}Beverages"/>* <element ref="{}HardLiquor"/>* <element ref="{}AlcoholicBeverages"/>* <element ref="{}Wine"/>* </choice>* </restriction>* </complexContent>* </complexType>* </pre>***/@XmlAccessorType(XmlAccessType.FIELD)@XmlType(name = "", propOrder = {"food","householdSupplies","beverages","hardLiquor","alcoholicBeverages","wine"})public static class ProductType {@XmlElement(name = "Food")protected Food food;@XmlElement(name = "HouseholdSupplies")protected HouseholdSupplies householdSupplies;@XmlElement(name = "Beverages")protected Beverages beverages;@XmlElement(name = "HardLiquor")protected HardLiquor hardLiquor;@XmlElement(name = "AlcoholicBeverages")protected AlcoholicBeverages alcoholicBeverages;@XmlElement(name = "Wine")protected Wine wine;/*** Gets the value of the food property.** @return* possible object is* {@link Food }**/public Food getFood() {return food;}/*** Sets the value of the food property.** @param value* allowed object is* {@link Food }**/public void setFood(Food value) {this.food = value;}/*** Gets the value of the householdSupplies property.** @return* possible object is* {@link HouseholdSupplies }**/public HouseholdSupplies getHouseholdSupplies() {return householdSupplies;}/*** Sets the value of the householdSupplies property.** @param value* allowed object is* {@link HouseholdSupplies }**/public void setHouseholdSupplies(HouseholdSupplies value) {this.householdSupplies = value;}/*** Gets the value of the beverages property.** @return* possible object is* {@link Beverages }**/public Beverages getBeverages() {return beverages;}/*** Sets the value of the beverages property.** @param value* allowed object is* {@link Beverages }**/public void setBeverages(Beverages value) {this.beverages = value;}/*** Gets the value of the hardLiquor property.** @return* possible object is* {@link HardLiquor }**/public HardLiquor getHardLiquor() {return hardLiquor;}/*** Sets the value of the hardLiquor property.** @param value* allowed object is* {@link HardLiquor }**/public void setHardLiquor(HardLiquor value) {this.hardLiquor = value;}/*** Gets the value of the alcoholicBeverages property.** @return* possible object is* {@link AlcoholicBeverages }**/public AlcoholicBeverages getAlcoholicBeverages() {return alcoholicBeverages;}/*** Sets the value of the alcoholicBeverages property.** @param value* allowed object is* {@link AlcoholicBeverages }**/public void setAlcoholicBeverages(AlcoholicBeverages value) {this.alcoholicBeverages = value;}/*** Gets the value of the wine property.** @return* possible object is* {@link Wine }**/public Wine getWine() {return wine;}/*** Sets the value of the wine property.** @param value* allowed object is* {@link Wine }**/public void setWine(Wine value) {this.wine = value;}}}