net.anwiba.tools.yworks.labels.generated.Label Maven / Gradle / Ivy
//
// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.11
// See http://java.sun.com/xml/jaxb
// Any modifications to this file will be lost upon recompilation of the source schema.
// Generated on: 2018.09.02 at 10:45:59 PM CEST
//
package net.anwiba.tools.yworks.labels.generated;
import javax.xml.bind.annotation.XmlAccessType;
import javax.xml.bind.annotation.XmlAccessorType;
import javax.xml.bind.annotation.XmlElement;
import javax.xml.bind.annotation.XmlType;
/**
* Java class for LabelType complex type.
*
*
The following schema fragment specifies the expected content contained within this class.
*
*
* <complexType name="LabelType">
* <complexContent>
* <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
* <sequence>
* <element name="Text" type="{}TextType"/>
* </sequence>
* </restriction>
* </complexContent>
* </complexType>
*
*
*
*/
@XmlAccessorType(XmlAccessType.FIELD)
@XmlType(name = "LabelType", propOrder = {
"text"
})
public class Label {
@XmlElement(name = "Text", required = true)
protected Text text;
/**
* Gets the value of the text property.
*
* @return
* possible object is
* {@link Text }
*
*/
public Text getText() {
return text;
}
/**
* Sets the value of the text property.
*
* @param value
* allowed object is
* {@link Text }
*
*/
public void setText(Text value) {
this.text = value;
}
}