de.drv.dsrv.extrastandard.namespace.messages.AbstractArgument Maven / Gradle / Ivy
//
// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.5-b10
// See http://java.sun.com/xml/jaxb
// Any modifications to this file will be lost upon recompilation of the source schema.
// Generated on: 2013.02.27 at 11:29:43 PM CET
//
package de.drv.dsrv.extrastandard.namespace.messages;
import java.util.ArrayList;
import java.util.List;
import javax.xml.bind.JAXBElement;
import javax.xml.bind.annotation.XmlAccessType;
import javax.xml.bind.annotation.XmlAccessorType;
import javax.xml.bind.annotation.XmlAttribute;
import javax.xml.bind.annotation.XmlElementRef;
import javax.xml.bind.annotation.XmlElementRefs;
import javax.xml.bind.annotation.XmlSeeAlso;
import javax.xml.bind.annotation.XmlType;
import javax.xml.namespace.QName;
/**
* Java class for AbstractArgumentType complex type.
*
*
The following schema fragment specifies the expected content contained within this class.
*
*
* <complexType name="AbstractArgumentType">
* <complexContent>
* <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
* <choice>
* <element name="EQ" type="{http://www.extra-standard.de/namespace/message/1}OperandType"/>
* <element name="LE" type="{http://www.extra-standard.de/namespace/message/1}OperandType"/>
* <element name="LT" type="{http://www.extra-standard.de/namespace/message/1}OperandType"/>
* <sequence>
* <choice>
* <element name="GE" type="{http://www.extra-standard.de/namespace/message/1}OperandType"/>
* <element name="GT" type="{http://www.extra-standard.de/namespace/message/1}OperandType"/>
* </choice>
* <choice minOccurs="0">
* <element name="LE" type="{http://www.extra-standard.de/namespace/message/1}OperandType"/>
* <element name="LT" type="{http://www.extra-standard.de/namespace/message/1}OperandType"/>
* </choice>
* </sequence>
* <element name="IN" type="{http://www.extra-standard.de/namespace/message/1}OperandSetType"/>
* </choice>
* <attribute name="type" type="{http://www.extra-standard.de/namespace/message/1}XSDPrefixedTypeCodes" default="xs:string" />
* <attribute name="event" type="{http://www.extra-standard.de/namespace/message/1}EventNamesType" default="http://www.extra-standard.de/event/Default" />
* </restriction>
* </complexContent>
* </complexType>
*
*
*
*/
@XmlAccessorType(XmlAccessType.FIELD)
@XmlType(name = "AbstractArgumentType", propOrder = {
"content"
})
@XmlSeeAlso({
DataRequestArgument.class,
StatusRequestArgument.class
})
public abstract class AbstractArgument {
@XmlElementRefs({
@XmlElementRef(name = "IN", namespace = "http://www.extra-standard.de/namespace/message/1", type = JAXBElement.class),
@XmlElementRef(name = "LE", namespace = "http://www.extra-standard.de/namespace/message/1", type = JAXBElement.class),
@XmlElementRef(name = "EQ", namespace = "http://www.extra-standard.de/namespace/message/1", type = JAXBElement.class),
@XmlElementRef(name = "GE", namespace = "http://www.extra-standard.de/namespace/message/1", type = JAXBElement.class),
@XmlElementRef(name = "LT", namespace = "http://www.extra-standard.de/namespace/message/1", type = JAXBElement.class),
@XmlElementRef(name = "GT", namespace = "http://www.extra-standard.de/namespace/message/1", type = JAXBElement.class)
})
protected List> content;
@XmlAttribute(name = "type")
protected QName type;
@XmlAttribute(name = "event")
protected String event;
/**
* Gets the rest of the content model.
*
*
* You are getting this "catch-all" property because of the following reason:
* The field name "LE" is used by two different parts of a schema. See:
* line 514 of file:/D:/LDaten/eclipse/extra/svn/java/components/extra-schema/src/main/resources/xsd/eXTra-messages-1.xsd
* line 506 of file:/D:/LDaten/eclipse/extra/svn/java/components/extra-schema/src/main/resources/xsd/eXTra-messages-1.xsd
*
* To get rid of this property, apply a property customization to one
* of both of the following declarations to change their names:
* Gets the value of the content property.
*
*
* This accessor method returns a reference to the live list,
* not a snapshot. Therefore any modification you make to the
* returned list will be present inside the JAXB object.
* This is why there is not a set method for the content property.
*
*
* For example, to add a new item, do as follows:
*
* getContent().add(newItem);
*
*
*
*
* Objects of the following type(s) are allowed in the list
* {@link JAXBElement }{@code <}{@link Operand }{@code >}
* {@link JAXBElement }{@code <}{@link OperandSet }{@code >}
* {@link JAXBElement }{@code <}{@link Operand }{@code >}
* {@link JAXBElement }{@code <}{@link Operand }{@code >}
* {@link JAXBElement }{@code <}{@link Operand }{@code >}
* {@link JAXBElement }{@code <}{@link Operand }{@code >}
*
*
*/
public List> getContent() {
if (content == null) {
content = new ArrayList>();
}
return this.content;
}
/**
* Gets the value of the type property.
*
* @return
* possible object is
* {@link QName }
*
*/
public QName getType() {
if (type == null) {
return new QName("http://www.w3.org/2001/XMLSchema", "string", "xs");
} else {
return type;
}
}
/**
* Sets the value of the type property.
*
* @param value
* allowed object is
* {@link QName }
*
*/
public void setType(QName value) {
this.type = value;
}
/**
* Gets the value of the event property.
*
* @return
* possible object is
* {@link String }
*
*/
public String getEvent() {
if (event == null) {
return "http://www.extra-standard.de/event/Default";
} else {
return event;
}
}
/**
* Sets the value of the event property.
*
* @param value
* allowed object is
* {@link String }
*
*/
public void setEvent(String value) {
this.event = value;
}
}