net.anwiba.tools.yworks.shapenode.generated.ShapeNode 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.shapenode.generated;
import javax.xml.bind.annotation.XmlAccessType;
import javax.xml.bind.annotation.XmlAccessorType;
import javax.xml.bind.annotation.XmlElement;
import javax.xml.bind.annotation.XmlRootElement;
import javax.xml.bind.annotation.XmlType;
/**
* Java class for ShapeNode element declaration.
*
*
The following schema fragment specifies the expected content contained within this class.
*
*
* <element name="ShapeNode">
* <complexType>
* <complexContent>
* <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
* <sequence>
* <element name="Fill" type="{http://www.yworks.com/xml/graphml}FillType" minOccurs="0"/>
* <element name="NodeLabel" type="{http://www.yworks.com/xml/graphml}NodeLabelType" minOccurs="0"/>
* <element name="Shape" type="{http://www.yworks.com/xml/graphml}ShapeType" minOccurs="0"/>
* </sequence>
* </restriction>
* </complexContent>
* </complexType>
* </element>
*
*
*
*/
@XmlAccessorType(XmlAccessType.FIELD)
@XmlType(name = "", propOrder = {
"fill",
"nodeLabel",
"shape"
})
@XmlRootElement(name = "ShapeNode")
public class ShapeNode {
@XmlElement(name = "Fill")
protected Fill fill;
@XmlElement(name = "NodeLabel")
protected NodeLabel nodeLabel;
@XmlElement(name = "Shape")
protected Shape shape;
/**
* Gets the value of the fill property.
*
* @return
* possible object is
* {@link Fill }
*
*/
public Fill getFill() {
return fill;
}
/**
* Sets the value of the fill property.
*
* @param value
* allowed object is
* {@link Fill }
*
*/
public void setFill(Fill value) {
this.fill = value;
}
/**
* Gets the value of the nodeLabel property.
*
* @return
* possible object is
* {@link NodeLabel }
*
*/
public NodeLabel getNodeLabel() {
return nodeLabel;
}
/**
* Sets the value of the nodeLabel property.
*
* @param value
* allowed object is
* {@link NodeLabel }
*
*/
public void setNodeLabel(NodeLabel value) {
this.nodeLabel = value;
}
/**
* Gets the value of the shape property.
*
* @return
* possible object is
* {@link Shape }
*
*/
public Shape getShape() {
return shape;
}
/**
* Sets the value of the shape property.
*
* @param value
* allowed object is
* {@link Shape }
*
*/
public void setShape(Shape value) {
this.shape = value;
}
}