// // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.4-2 // 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: 2013.04.23 at 03:15:41 PM EST // package vroom.common.modeling.vrprep; 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.XmlRootElement; import javax.xml.bind.annotation.XmlType; import javax.xml.bind.annotation.XmlValue; /** * <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 name="start" minOccurs="0"> * <complexType> * <complexContent> * <restriction base="{http://www.w3.org/2001/XMLSchema}anyType"> * <attribute name="isHard" type="{http://www.w3.org/2001/XMLSchema}boolean" default="true" /> * </restriction> * </complexContent> * </complexType> * </element> * <element name="end" minOccurs="0"> * <complexType> * <complexContent> * <restriction base="{http://www.w3.org/2001/XMLSchema}anyType"> * <attribute name="isHard" type="{http://www.w3.org/2001/XMLSchema}boolean" default="true" /> * </restriction> * </complexContent> * </complexType> * </element> * </sequence> * <attribute name="period" type="{http://www.w3.org/2001/XMLSchema}integer" /> * </restriction> * </complexContent> * </complexType> * </pre> * * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "", propOrder = { "start", "end" }) @XmlRootElement(name = "tw") public class Tw { protected Tw.Start start; protected Tw.End end; @XmlAttribute(name = "period") protected BigInteger period; /** * Gets the value of the start property. * * @return * possible object is * {@link Tw.Start } * */ public Tw.Start getStart() { return start; } /** * Sets the value of the start property. * * @param value * allowed object is * {@link Tw.Start } * */ public void setStart(Tw.Start value) { this.start = value; } /** * Gets the value of the end property. * * @return * possible object is * {@link Tw.End } * */ public Tw.End getEnd() { return end; } /** * Sets the value of the end property. * * @param value * allowed object is * {@link Tw.End } * */ public void setEnd(Tw.End value) { this.end = value; } /** * Gets the value of the period property. * * @return * possible object is * {@link BigInteger } * */ public BigInteger getPeriod() { return period; } /** * Sets the value of the period property. * * @param value * allowed object is * {@link BigInteger } * */ public void setPeriod(BigInteger value) { this.period = value; } /** * <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"> * <attribute name="isHard" type="{http://www.w3.org/2001/XMLSchema}boolean" default="true" /> * </restriction> * </complexContent> * </complexType> * </pre> * * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "", propOrder = { "content" }) public static class End { @XmlValue protected String content; @XmlAttribute(name = "isHard") protected Boolean isHard; /** * Gets the value of the content property. * * @return * possible object is * {@link String } * */ public String getContent() { return content; } /** * Sets the value of the content property. * * @param value * allowed object is * {@link String } * */ public void setContent(String value) { this.content = value; } /** * Gets the value of the isHard property. * * @return * possible object is * {@link Boolean } * */ public boolean isIsHard() { if (isHard == null) { return true; } else { return isHard; } } /** * Sets the value of the isHard property. * * @param value * allowed object is * {@link Boolean } * */ public void setIsHard(Boolean value) { this.isHard = value; } } /** * <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"> * <attribute name="isHard" type="{http://www.w3.org/2001/XMLSchema}boolean" default="true" /> * </restriction> * </complexContent> * </complexType> * </pre> * * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "", propOrder = { "content" }) public static class Start { @XmlValue protected String content; @XmlAttribute(name = "isHard") protected Boolean isHard; /** * Gets the value of the content property. * * @return * possible object is * {@link String } * */ public String getContent() { return content; } /** * Sets the value of the content property. * * @param value * allowed object is * {@link String } * */ public void setContent(String value) { this.content = value; } /** * Gets the value of the isHard property. * * @return * possible object is * {@link Boolean } * */ public boolean isIsHard() { if (isHard == null) { return true; } else { return isHard; } } /** * Sets the value of the isHard property. * * @param value * allowed object is * {@link Boolean } * */ public void setIsHard(Boolean value) { this.isHard = value; } } }