// // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.4 // 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: 2012.08.04 at 11:30:52 PM CEST // package eu.prestoprime.model.datatypes; import java.io.Serializable; 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 datatype complex type. * * <p> * The following schema fragment specifies the expected content contained within * this class. * * <pre> * <complexType name="datatype"> * <complexContent> * <restriction base="{http://www.w3.org/2001/XMLSchema}anyType"> * <sequence> * <element name="name" type="{http://www.w3.org/2001/XMLSchema}string"/> * <element name="multiple" type="{http://www.w3.org/2001/XMLSchema}string"/> * <element name="section" type="{http://www.prestoprime.eu/model/2012/datatypes}section"/> * <element name="ref" type="{http://www.prestoprime.eu/model/2012/datatypes}ref"/> * </sequence> * </restriction> * </complexContent> * </complexType> * </pre> * * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "datatype", propOrder = { "name", "multiple", "section", "ref" }) public class Datatype implements Serializable { private final static long serialVersionUID = 1L; @XmlElement(required = true) protected String name; @XmlElement(required = true) protected String multiple; @XmlElement(required = true) protected Section section; @XmlElement(required = true) protected Ref ref; /** * Gets the value of the name property. * * @return possible object is {@link String } * */ public String getName() { return name; } /** * Sets the value of the name property. * * @param value * allowed object is {@link String } * */ public void setName(String value) { this.name = value; } /** * Gets the value of the multiple property. * * @return possible object is {@link String } * */ public String getMultiple() { return multiple; } /** * Sets the value of the multiple property. * * @param value * allowed object is {@link String } * */ public void setMultiple(String value) { this.multiple = value; } /** * Gets the value of the section property. * * @return possible object is {@link Section } * */ public Section getSection() { return section; } /** * Sets the value of the section property. * * @param value * allowed object is {@link Section } * */ public void setSection(Section value) { this.section = value; } /** * Gets the value of the ref property. * * @return possible object is {@link Ref } * */ public Ref getRef() { return ref; } /** * Sets the value of the ref property. * * @param value * allowed object is {@link Ref } * */ public void setRef(Ref value) { this.ref = value; } }