net.anwiba.tools.yworks.shapenode.generated.NodeLabel 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: 2017.11.21 at 09:39:40 PM CET
//
package net.anwiba.tools.yworks.shapenode.generated;
import javax.xml.bind.annotation.XmlAccessType;
import javax.xml.bind.annotation.XmlAccessorType;
import javax.xml.bind.annotation.XmlAttribute;
import javax.xml.bind.annotation.XmlType;
import javax.xml.bind.annotation.XmlValue;
/**
* Java class for NodeLabelType complex type.
*
*
The following schema fragment specifies the expected content contained within this class.
*
*
* <complexType name="NodeLabelType">
* <complexContent>
* <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
* <attribute name="modelName" type="{http://www.w3.org/2001/XMLSchema}string" />
* <attribute name="modelPosition" type="{http://www.w3.org/2001/XMLSchema}string" />
* </restriction>
* </complexContent>
* </complexType>
*
*
*
*/
@XmlAccessorType(XmlAccessType.FIELD)
@XmlType(name = "NodeLabelType", propOrder = {
"content"
})
public class NodeLabel {
@XmlValue
protected String content;
@XmlAttribute(name = "modelName")
protected String modelName;
@XmlAttribute(name = "modelPosition")
protected String modelPosition;
/**
* Gets the value of the content property.
*
* @return
* possible object is
* {@link String }
*
*/
public String getContent() {
return content;
}
/**
* Sets the value of the content property.
*
* @param value
* allowed object is
* {@link String }
*
*/
public void setContent(String value) {
this.content = value;
}
/**
* Gets the value of the modelName property.
*
* @return
* possible object is
* {@link String }
*
*/
public String getModelName() {
return modelName;
}
/**
* Sets the value of the modelName property.
*
* @param value
* allowed object is
* {@link String }
*
*/
public void setModelName(String value) {
this.modelName = value;
}
/**
* Gets the value of the modelPosition property.
*
* @return
* possible object is
* {@link String }
*
*/
public String getModelPosition() {
return modelPosition;
}
/**
* Sets the value of the modelPosition property.
*
* @param value
* allowed object is
* {@link String }
*
*/
public void setModelPosition(String value) {
this.modelPosition = value;
}
}