Blame | Last modification | View Log | RSS feed
package com.bluedart.entities;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 Dimension complex type.** <p>The following schema fragment specifies the expected content contained within this class.** <pre>* <complexType name="Dimension">* <complexContent>* <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">* <sequence>* <element name="Breadth" type="{http://www.w3.org/2001/XMLSchema}double" minOccurs="0"/>* <element name="Count" type="{http://www.w3.org/2001/XMLSchema}int" minOccurs="0"/>* <element name="Height" type="{http://www.w3.org/2001/XMLSchema}double" minOccurs="0"/>* <element name="Length" type="{http://www.w3.org/2001/XMLSchema}double" minOccurs="0"/>* </sequence>* </restriction>* </complexContent>* </complexType>* </pre>***/@XmlAccessorType(XmlAccessType.FIELD)@XmlType(name = "Dimension", propOrder = {"breadth","count","height","length"})public class Dimension {@XmlElement(name = "Breadth")protected Double breadth;@XmlElement(name = "Count")protected Integer count;@XmlElement(name = "Height")protected Double height;@XmlElement(name = "Length")protected Double length;/*** Gets the value of the breadth property.** @return* possible object is* {@link Double }**/public Double getBreadth() {return breadth;}/*** Sets the value of the breadth property.** @param value* allowed object is* {@link Double }**/public void setBreadth(Double value) {this.breadth = value;}/*** Gets the value of the count property.** @return* possible object is* {@link Integer }**/public Integer getCount() {return count;}/*** Sets the value of the count property.** @param value* allowed object is* {@link Integer }**/public void setCount(Integer value) {this.count = value;}/*** Gets the value of the height property.** @return* possible object is* {@link Double }**/public Double getHeight() {return height;}/*** Sets the value of the height property.** @param value* allowed object is* {@link Double }**/public void setHeight(Double value) {this.height = value;}/*** Gets the value of the length property.** @return* possible object is* {@link Double }**/public Double getLength() {return length;}/*** Sets the value of the length property.** @param value* allowed object is* {@link Double }**/public void setLength(Double value) {this.length = value;}}