package org.scilab.modules.xcos.modelica.model;
-import javax.xml.bind.JAXBElement;
import javax.xml.bind.annotation.XmlAccessType;
import javax.xml.bind.annotation.XmlAccessorType;
import javax.xml.bind.annotation.XmlElement;
-import javax.xml.bind.annotation.XmlElementRef;
import javax.xml.bind.annotation.XmlType;
/**
* <element name="nominal_value" type="{}ModelicaValue" minOccurs="0"/>
* <element name="comment" type="{}ModelicaValue" minOccurs="0"/>
* <element name="selected" type="{}ModelicaValue" minOccurs="0"/>
- * <element name="output" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
+ * <element name="output" minOccurs="0">
+ * <complexType>
+ * <complexContent>
+ * <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
+ * </restriction>
+ * </complexContent>
+ * </complexType>
+ * </element>
* </sequence>
* </restriction>
* </complexContent>
protected ModelicaValue nominalValue;
protected ModelicaValue comment;
protected ModelicaValue selected;
- @XmlElementRef(name = "output", type = JAXBElement.class)
- protected JAXBElement<String> output;
+ protected Terminal.Output output;
/**
* Gets the value of the name property.
/**
* Gets the value of the output property.
*
- * @return possible object is {@link JAXBElement }{@code <}{@link String }
- * {@code >}
+ * @return possible object is {@link Terminal.Output }
*
*/
- public JAXBElement<String> getOutput() {
+ public Terminal.Output getOutput() {
return output;
}
* Sets the value of the output property.
*
* @param value
- * allowed object is {@link JAXBElement }{@code <}{@link String }
- * {@code >}
+ * allowed object is {@link Terminal.Output }
*
*/
- public void setOutput(JAXBElement<String> value) {
+ public void setOutput(Terminal.Output value) {
this.output = value;
}
- /*
- * Overriden methods
- */
-
/**
- * @return the id
- * @see java.lang.Object#toString()
+ * <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">
+ * </restriction>
+ * </complexContent>
+ * </complexType>
+ * </pre>
+ *
+ *
*/
- @Override
- public String toString() {
- return getId();
+ @XmlAccessorType(XmlAccessType.FIELD)
+ @XmlType(name = "")
+ public static class Output {
+
}
}