// // 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; import de.tum.in.i22.uc.pdp.core.condition.Operator; /** * <p>Java class for StateBasedOperatorType complex type. * * <p>The following schema fragment specifies the expected content contained within this class. * * <pre> * <complexType name="StateBasedOperatorType"> * <complexContent> * <restriction base="{http://www.w3.org/2001/XMLSchema}anyType"> * <attribute name="operator" use="required" type="{http://www.w3.org/2001/XMLSchema}string" /> * <attribute name="param1" use="required" type="{http://www.w3.org/2001/XMLSchema}string" /> * <attribute name="param2" type="{http://www.w3.org/2001/XMLSchema}string" /> * <attribute name="param3" type="{http://www.w3.org/2001/XMLSchema}string" /> * </restriction> * </complexContent> * </complexType> * </pre> * * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "StateBasedOperatorType") public class StateBasedOperatorType extends Operator { @XmlAttribute(name = "operator", required = true) protected String operator; @XmlAttribute(name = "param1", required = true) protected String param1; @XmlAttribute(name = "param2") protected String param2; @XmlAttribute(name = "param3") protected String param3; /** * Gets the value of the operator property. * * @return * possible object is * {@link String } * */ public String getOperator() { return operator; } /** * Sets the value of the operator property. * * @param value * allowed object is * {@link String } * */ public void setOperator(String value) { this.operator = value; } public boolean isSetOperator() { return (this.operator!= null); } /** * Gets the value of the param1 property. * * @return * possible object is * {@link String } * */ public String getParam1() { return param1; } /** * Sets the value of the param1 property. * * @param value * allowed object is * {@link String } * */ public void setParam1(String value) { this.param1 = value; } public boolean isSetParam1() { return (this.param1 != null); } /** * Gets the value of the param2 property. * * @return * possible object is * {@link String } * */ public String getParam2() { return param2; } /** * Sets the value of the param2 property. * * @param value * allowed object is * {@link String } * */ public void setParam2(String value) { this.param2 = value; } public boolean isSetParam2() { return (this.param2 != null); } /** * Gets the value of the param3 property. * * @return * possible object is * {@link String } * */ public String getParam3() { return param3; } /** * Sets the value of the param3 property. * * @param value * allowed object is * {@link String } * */ public void setParam3(String value) { this.param3 = value; } public boolean isSetParam3() { return (this.param3 != null); } }