// // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.5-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: 2014.06.12 at 01:48:04 PM CEST // package de.tum.in.i22.uc.pdp.xsd; import ae.javax.xml.bind.annotation.XmlAccessType; import ae.javax.xml.bind.annotation.XmlAccessorType; import ae.javax.xml.bind.annotation.XmlAttribute; import ae.javax.xml.bind.annotation.XmlType; /** * <p>Java class for ParameterType complex type. * * <p>The following schema fragment specifies the expected content contained within this class. * * <pre> * <complexType name="ParameterType"> * <complexContent> * <restriction base="{http://www.w3.org/2001/XMLSchema}anyType"> * <attribute name="name" use="required" type="{http://www.w3.org/2001/XMLSchema}string" /> * <attribute name="value" use="required" type="{http://www.w3.org/2001/XMLSchema}string" /> * <attribute name="type" type="{http://www22.in.tum.de/enforcementLanguage}ParamInstanceTypes" default="string" /> * </restriction> * </complexContent> * </complexType> * </pre> * * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "ParameterType") public class ParameterType { @XmlAttribute(name = "name", required = true) protected String name; @XmlAttribute(name = "value", required = true) protected String value; @XmlAttribute(name = "type") protected ParamInstanceTypes type; /** * 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; } public boolean isSetName() { return (this.name!= null); } /** * Gets the value of the value property. * * @return * possible object is * {@link String } * */ public String getValue() { return value; } /** * Sets the value of the value property. * * @param value * allowed object is * {@link String } * */ public void setValue(String value) { this.value = value; } public boolean isSetValue() { return (this.value!= null); } /** * Gets the value of the type property. * * @return * possible object is * {@link ParamInstanceTypes } * */ public ParamInstanceTypes getType() { if (type == null) { return ParamInstanceTypes.STRING; } else { return type; } } /** * Sets the value of the type property. * * @param value * allowed object is * {@link ParamInstanceTypes } * */ public void setType(ParamInstanceTypes value) { this.type = value; } public boolean isSetType() { return (this.type!= null); } }