// // 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 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.XmlType; /** * <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="{urn:astm-org:CCR}Description" minOccurs="0"/> * <element name="Actor" type="{urn:astm-org:CCR}ActorReferenceType" minOccurs="0"/> * </sequence> * </restriction> * </complexContent> * </complexType> * </pre> * * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "", propOrder = { "description", "actor" }) @XmlRootElement(name = "Location") public class Location { @XmlElement(name = "Description") protected CodedDescriptionType description; @XmlElement(name = "Actor") protected ActorReferenceType actor; /** * Gets the value of the description property. * * @return * possible object is * {@link CodedDescriptionType } * */ public CodedDescriptionType getDescription() { return description; } /** * Sets the value of the description property. * * @param value * allowed object is * {@link CodedDescriptionType } * */ public void setDescription(CodedDescriptionType value) { this.description = value; } /** * Gets the value of the actor property. * * @return * possible object is * {@link ActorReferenceType } * */ public ActorReferenceType getActor() { return actor; } /** * Sets the value of the actor property. * * @param value * allowed object is * {@link ActorReferenceType } * */ public void setActor(ActorReferenceType value) { this.actor = value; } }