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 java.math.BigInteger;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.XmlSchemaType;import javax.xml.bind.annotation.XmlType;import javax.xml.bind.annotation.adapters.NormalizedStringAdapter;import javax.xml.bind.annotation.adapters.XmlJavaTypeAdapter;/*** <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 ref="{}BatteryCellType" minOccurs="0"/>* <element name="BatteryChargeCycles" type="{http://www.w3.org/2001/XMLSchema}positiveInteger" minOccurs="0"/>* <element ref="{}BatteryPower" minOccurs="0"/>* <element ref="{}BoxContents" minOccurs="0"/>* <element ref="{}CoatingDescription" minOccurs="0"/>* <element ref="{}DigitalZoom" minOccurs="0"/>* <element ref="{}EffectiveStillResolution" minOccurs="0"/>* <element ref="{}FinishType" minOccurs="0"/>* <element ref="{}FocusType" minOccurs="0"/>* <element ref="{}ImageStabilization" minOccurs="0"/>* <element name="Lens" type="{}StringNotNull" minOccurs="0"/>* <element name="MemorySlotsAvailable" type="{}StringNotNull" minOccurs="0"/>* <element ref="{}MaxFocalLength" minOccurs="0"/>* <element name="PowerSource" type="{}FortyStringNotNull" minOccurs="0"/>* <element name="RemovableMemory" type="{}StringNotNull" minOccurs="0"/>* <element name="SoftwareIncluded" type="{}LongStringNotNull" minOccurs="0"/>* <element ref="{}ViewFinderType" minOccurs="0"/>* </sequence>* </restriction>* </complexContent>* </complexType>* </pre>***/@XmlAccessorType(XmlAccessType.FIELD)@XmlType(name = "", propOrder = {"batteryCellType","batteryChargeCycles","batteryPower","boxContents","coatingDescription","digitalZoom","effectiveStillResolution","finishType","focusType","imageStabilization","lens","memorySlotsAvailable","maxFocalLength","powerSource","removableMemory","softwareIncluded","viewFinderType"})@XmlRootElement(name = "CEBinocular")public class CEBinocular {@XmlElement(name = "BatteryCellType")protected BatteryCellTypeValues batteryCellType;@XmlElement(name = "BatteryChargeCycles")@XmlSchemaType(name = "positiveInteger")protected BigInteger batteryChargeCycles;@XmlElement(name = "BatteryPower")protected BatteryPowerIntegerDimension batteryPower;@XmlElement(name = "BoxContents")@XmlJavaTypeAdapter(NormalizedStringAdapter.class)protected String boxContents;@XmlElement(name = "CoatingDescription")@XmlJavaTypeAdapter(NormalizedStringAdapter.class)protected String coatingDescription;@XmlElement(name = "DigitalZoom")protected ZoomDimension digitalZoom;@XmlElement(name = "EffectiveStillResolution")protected ResolutionDimension effectiveStillResolution;@XmlElement(name = "FinishType")@XmlJavaTypeAdapter(NormalizedStringAdapter.class)protected String finishType;@XmlElement(name = "FocusType")@XmlJavaTypeAdapter(NormalizedStringAdapter.class)protected String focusType;@XmlElement(name = "ImageStabilization")@XmlJavaTypeAdapter(NormalizedStringAdapter.class)protected String imageStabilization;@XmlElement(name = "Lens")@XmlJavaTypeAdapter(NormalizedStringAdapter.class)protected String lens;@XmlElement(name = "MemorySlotsAvailable")@XmlJavaTypeAdapter(NormalizedStringAdapter.class)protected String memorySlotsAvailable;@XmlElement(name = "MaxFocalLength")protected LengthDimension maxFocalLength;@XmlElement(name = "PowerSource")@XmlJavaTypeAdapter(NormalizedStringAdapter.class)protected String powerSource;@XmlElement(name = "RemovableMemory")@XmlJavaTypeAdapter(NormalizedStringAdapter.class)protected String removableMemory;@XmlElement(name = "SoftwareIncluded")@XmlJavaTypeAdapter(NormalizedStringAdapter.class)protected String softwareIncluded;@XmlElement(name = "ViewFinderType")@XmlJavaTypeAdapter(NormalizedStringAdapter.class)protected String viewFinderType;/*** Gets the value of the batteryCellType property.** @return* possible object is* {@link BatteryCellTypeValues }**/public BatteryCellTypeValues getBatteryCellType() {return batteryCellType;}/*** Sets the value of the batteryCellType property.** @param value* allowed object is* {@link BatteryCellTypeValues }**/public void setBatteryCellType(BatteryCellTypeValues value) {this.batteryCellType = value;}/*** Gets the value of the batteryChargeCycles property.** @return* possible object is* {@link BigInteger }**/public BigInteger getBatteryChargeCycles() {return batteryChargeCycles;}/*** Sets the value of the batteryChargeCycles property.** @param value* allowed object is* {@link BigInteger }**/public void setBatteryChargeCycles(BigInteger value) {this.batteryChargeCycles = value;}/*** Gets the value of the batteryPower property.** @return* possible object is* {@link BatteryPowerIntegerDimension }**/public BatteryPowerIntegerDimension getBatteryPower() {return batteryPower;}/*** Sets the value of the batteryPower property.** @param value* allowed object is* {@link BatteryPowerIntegerDimension }**/public void setBatteryPower(BatteryPowerIntegerDimension value) {this.batteryPower = value;}/*** Gets the value of the boxContents property.** @return* possible object is* {@link String }**/public String getBoxContents() {return boxContents;}/*** Sets the value of the boxContents property.** @param value* allowed object is* {@link String }**/public void setBoxContents(String value) {this.boxContents = value;}/*** Gets the value of the coatingDescription property.** @return* possible object is* {@link String }**/public String getCoatingDescription() {return coatingDescription;}/*** Sets the value of the coatingDescription property.** @param value* allowed object is* {@link String }**/public void setCoatingDescription(String value) {this.coatingDescription = value;}/*** Gets the value of the digitalZoom property.** @return* possible object is* {@link ZoomDimension }**/public ZoomDimension getDigitalZoom() {return digitalZoom;}/*** Sets the value of the digitalZoom property.** @param value* allowed object is* {@link ZoomDimension }**/public void setDigitalZoom(ZoomDimension value) {this.digitalZoom = value;}/*** Gets the value of the effectiveStillResolution property.** @return* possible object is* {@link ResolutionDimension }**/public ResolutionDimension getEffectiveStillResolution() {return effectiveStillResolution;}/*** Sets the value of the effectiveStillResolution property.** @param value* allowed object is* {@link ResolutionDimension }**/public void setEffectiveStillResolution(ResolutionDimension value) {this.effectiveStillResolution = value;}/*** Gets the value of the finishType property.** @return* possible object is* {@link String }**/public String getFinishType() {return finishType;}/*** Sets the value of the finishType property.** @param value* allowed object is* {@link String }**/public void setFinishType(String value) {this.finishType = value;}/*** Gets the value of the focusType property.** @return* possible object is* {@link String }**/public String getFocusType() {return focusType;}/*** Sets the value of the focusType property.** @param value* allowed object is* {@link String }**/public void setFocusType(String value) {this.focusType = value;}/*** Gets the value of the imageStabilization property.** @return* possible object is* {@link String }**/public String getImageStabilization() {return imageStabilization;}/*** Sets the value of the imageStabilization property.** @param value* allowed object is* {@link String }**/public void setImageStabilization(String value) {this.imageStabilization = value;}/*** Gets the value of the lens property.** @return* possible object is* {@link String }**/public String getLens() {return lens;}/*** Sets the value of the lens property.** @param value* allowed object is* {@link String }**/public void setLens(String value) {this.lens = value;}/*** Gets the value of the memorySlotsAvailable property.** @return* possible object is* {@link String }**/public String getMemorySlotsAvailable() {return memorySlotsAvailable;}/*** Sets the value of the memorySlotsAvailable property.** @param value* allowed object is* {@link String }**/public void setMemorySlotsAvailable(String value) {this.memorySlotsAvailable = value;}/*** Gets the value of the maxFocalLength property.** @return* possible object is* {@link LengthDimension }**/public LengthDimension getMaxFocalLength() {return maxFocalLength;}/*** Sets the value of the maxFocalLength property.** @param value* allowed object is* {@link LengthDimension }**/public void setMaxFocalLength(LengthDimension value) {this.maxFocalLength = value;}/*** Gets the value of the powerSource property.** @return* possible object is* {@link String }**/public String getPowerSource() {return powerSource;}/*** Sets the value of the powerSource property.** @param value* allowed object is* {@link String }**/public void setPowerSource(String value) {this.powerSource = value;}/*** Gets the value of the removableMemory property.** @return* possible object is* {@link String }**/public String getRemovableMemory() {return removableMemory;}/*** Sets the value of the removableMemory property.** @param value* allowed object is* {@link String }**/public void setRemovableMemory(String value) {this.removableMemory = value;}/*** Gets the value of the softwareIncluded property.** @return* possible object is* {@link String }**/public String getSoftwareIncluded() {return softwareIncluded;}/*** Sets the value of the softwareIncluded property.** @param value* allowed object is* {@link String }**/public void setSoftwareIncluded(String value) {this.softwareIncluded = value;}/*** Gets the value of the viewFinderType property.** @return* possible object is* {@link String }**/public String getViewFinderType() {return viewFinderType;}/*** Sets the value of the viewFinderType property.** @param value* allowed object is* {@link String }**/public void setViewFinderType(String value) {this.viewFinderType = value;}}