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.XmlType;/*** <p>Java class for Dimensions complex type.** <p>The following schema fragment specifies the expected content contained within this class.** <pre>* <complexType name="Dimensions">* <complexContent>* <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">* <sequence>* <element name="Length" type="{}LengthDimension" minOccurs="0"/>* <element name="Width" type="{}LengthDimension" minOccurs="0"/>* <element name="Height" type="{}LengthDimension" minOccurs="0"/>* <element name="Weight" type="{}WeightDimension" minOccurs="0"/>* </sequence>* </restriction>* </complexContent>* </complexType>* </pre>***/@XmlAccessorType(XmlAccessType.FIELD)@XmlType(name = "Dimensions", propOrder = {"length","width","height","weight"})public class Dimensions {@XmlElement(name = "Length")protected LengthDimension length;@XmlElement(name = "Width")protected LengthDimension width;@XmlElement(name = "Height")protected LengthDimension height;@XmlElement(name = "Weight")protected WeightDimension weight;/*** Gets the value of the length property.** @return* possible object is* {@link LengthDimension }**/public LengthDimension getLength() {return length;}/*** Sets the value of the length property.** @param value* allowed object is* {@link LengthDimension }**/public void setLength(LengthDimension value) {this.length = value;}/*** Gets the value of the width property.** @return* possible object is* {@link LengthDimension }**/public LengthDimension getWidth() {return width;}/*** Sets the value of the width property.** @param value* allowed object is* {@link LengthDimension }**/public void setWidth(LengthDimension value) {this.width = value;}/*** Gets the value of the height property.** @return* possible object is* {@link LengthDimension }**/public LengthDimension getHeight() {return height;}/*** Sets the value of the height property.** @param value* allowed object is* {@link LengthDimension }**/public void setHeight(LengthDimension value) {this.height = value;}/*** Gets the value of the weight property.** @return* possible object is* {@link WeightDimension }**/public WeightDimension getWeight() {return weight;}/*** Sets the value of the weight property.** @param value* allowed object is* {@link WeightDimension }**/public void setWeight(WeightDimension value) {this.weight = value;}}