// // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.3u2-hudson-jaxb-ri-2.2.3-4- // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. // Generated on: 2011.10.02 at 06:28:50 PM EDT // package seg.jUCMNav.nfp.generated; import javax.xml.bind.annotation.XmlAccessType; import javax.xml.bind.annotation.XmlAccessorType; import javax.xml.bind.annotation.XmlElement; import javax.xml.bind.annotation.XmlType; /** *

Java class for Accuracy complex type. * *

The following schema fragment specifies the expected content contained within this class. * *

 * <complexType name="Accuracy">
 *   <complexContent>
 *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
 *       <sequence>
 *         <element name="accuracyLevel" type="{http://www.w3.org/2001/XMLSchema}double"/>
 *         <element name="other" type="{http://www.w3.org/2001/XMLSchema}string"/>
 *         <element name="unit" type="{}UnitKind"/>
 *       </sequence>
 *     </restriction>
 *   </complexContent>
 * </complexType>
 * 
* * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "Accuracy", propOrder = { "accuracyLevel", "other", "unit" }) public class Accuracy { protected double accuracyLevel; @XmlElement(required = true) protected String other; @XmlElement(required = true) protected UnitKind unit; /** * Gets the value of the accuracyLevel property. * */ public double getAccuracyLevel() { return accuracyLevel; } /** * Sets the value of the accuracyLevel property. * */ public void setAccuracyLevel(double value) { this.accuracyLevel = value; } /** * Gets the value of the other property. * * @return * possible object is * {@link String } * */ public String getOther() { return other; } /** * Sets the value of the other property. * * @param value * allowed object is * {@link String } * */ public void setOther(String value) { this.other = value; } /** * Gets the value of the unit property. * * @return * possible object is * {@link UnitKind } * */ public UnitKind getUnit() { return unit; } /** * Sets the value of the unit property. * * @param value * allowed object is * {@link UnitKind } * */ public void setUnit(UnitKind value) { this.unit = value; } }