// // 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: 2010.02.24 at 10:55:05 AM CST // package org.atdl4j.fixatdl.core; import java.math.BigInteger; import javax.xml.bind.annotation.XmlAccessType; import javax.xml.bind.annotation.XmlAccessorType; import javax.xml.bind.annotation.XmlAttribute; import javax.xml.bind.annotation.XmlSchemaType; import javax.xml.bind.annotation.XmlSeeAlso; import javax.xml.bind.annotation.XmlType; /** * Abstract parameter from which other parameters are derived. * * <p>Java class for Numeric_t complex type. * * <p>The following schema fragment specifies the expected content contained within this class. * * <pre> * <complexType name="Numeric_t"> * <complexContent> * <extension base="{http://www.fixprotocol.org/FIXatdl-1-1/Core}Parameter_t"> * <attribute name="precision" type="{http://www.w3.org/2001/XMLSchema}nonNegativeInteger" /> * </extension> * </complexContent> * </complexType> * </pre> * * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "Numeric_t") @XmlSeeAlso({ FloatT.class, PriceT.class, AmtT.class, PercentageT.class, QtyT.class, PriceOffsetT.class }) public class NumericT extends ParameterT { @XmlAttribute @XmlSchemaType(name = "nonNegativeInteger") protected BigInteger precision; /** * Gets the value of the precision property. * * @return * possible object is * {@link BigInteger } * */ public BigInteger getPrecision() { return precision; } /** * Sets the value of the precision property. * * @param value * allowed object is * {@link BigInteger } * */ public void setPrecision(BigInteger value) { this.precision = value; } }