// // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, vhudson-jaxb-ri-2.1-646 // 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.06.30 at 10:09:49 AM MESZ // package slash.navigation.tcx.binding2; import javax.xml.bind.annotation.XmlAccessType; import javax.xml.bind.annotation.XmlAccessorType; import javax.xml.bind.annotation.XmlAttribute; import javax.xml.bind.annotation.XmlElement; import javax.xml.bind.annotation.XmlType; /** * <p>Java class for Training_t complex type. * * <p>The following schema fragment specifies the expected content contained within this class. * * <pre> * <complexType name="Training_t"> * <complexContent> * <restriction base="{http://www.w3.org/2001/XMLSchema}anyType"> * <sequence> * <element name="QuickWorkoutResults" type="{http://www.garmin.com/xmlschemas/TrainingCenterDatabase/v2}QuickWorkout_t" minOccurs="0"/> * <element name="Plan" type="{http://www.garmin.com/xmlschemas/TrainingCenterDatabase/v2}Plan_t" minOccurs="0"/> * </sequence> * <attribute name="VirtualPartner" use="required" type="{http://www.w3.org/2001/XMLSchema}boolean" /> * </restriction> * </complexContent> * </complexType> * </pre> * * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "Training_t", propOrder = { "quickWorkoutResults", "plan" }) public class TrainingT { @XmlElement(name = "QuickWorkoutResults") protected QuickWorkoutT quickWorkoutResults; @XmlElement(name = "Plan") protected PlanT plan; @XmlAttribute(name = "VirtualPartner", required = true) protected boolean virtualPartner; /** * Gets the value of the quickWorkoutResults property. * * @return * possible object is * {@link QuickWorkoutT } * */ public QuickWorkoutT getQuickWorkoutResults() { return quickWorkoutResults; } /** * Sets the value of the quickWorkoutResults property. * * @param value * allowed object is * {@link QuickWorkoutT } * */ public void setQuickWorkoutResults(QuickWorkoutT value) { this.quickWorkoutResults = value; } /** * Gets the value of the plan property. * * @return * possible object is * {@link PlanT } * */ public PlanT getPlan() { return plan; } /** * Sets the value of the plan property. * * @param value * allowed object is * {@link PlanT } * */ public void setPlan(PlanT value) { this.plan = value; } /** * Gets the value of the virtualPartner property. * */ public boolean isVirtualPartner() { return virtualPartner; } /** * Sets the value of the virtualPartner property. * */ public void setVirtualPartner(boolean value) { this.virtualPartner = value; } }