// // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, vhudson-jaxb-ri-2.1-833 // 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.01.18 at 06:14:35 PM CST // package org.astm.ccr; 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.XmlType; /** * <p>Java class for SiteType complex type. * * <p>The following schema fragment specifies the expected content contained within this class. * * <pre> * <complexType name="SiteType"> * <complexContent> * <extension base="{urn:astm-org:CCR}CodedDescriptionType"> * <sequence> * <element name="SiteSequencePosition" type="{http://www.w3.org/2001/XMLSchema}integer" minOccurs="0"/> * <element name="MultipleSiteModifier" type="{urn:astm-org:CCR}CodedDescriptionType" minOccurs="0"/> * </sequence> * </extension> * </complexContent> * </complexType> * </pre> * * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "SiteType", propOrder = { "siteSequencePosition", "multipleSiteModifier" }) public class SiteType extends CodedDescriptionType { @XmlElement(name = "SiteSequencePosition") protected BigInteger siteSequencePosition; @XmlElement(name = "MultipleSiteModifier") protected CodedDescriptionType multipleSiteModifier; /** * Gets the value of the siteSequencePosition property. * * @return * possible object is * {@link BigInteger } * */ public BigInteger getSiteSequencePosition() { return siteSequencePosition; } /** * Sets the value of the siteSequencePosition property. * * @param value * allowed object is * {@link BigInteger } * */ public void setSiteSequencePosition(BigInteger value) { this.siteSequencePosition = value; } /** * Gets the value of the multipleSiteModifier property. * * @return * possible object is * {@link CodedDescriptionType } * */ public CodedDescriptionType getMultipleSiteModifier() { return multipleSiteModifier; } /** * Sets the value of the multipleSiteModifier property. * * @param value * allowed object is * {@link CodedDescriptionType } * */ public void setMultipleSiteModifier(CodedDescriptionType value) { this.multipleSiteModifier = value; } }