net.anwiba.tools.yworks.shapenode.generated.Fill 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.07.16 at 10:13:06 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.XmlAttribute;
import javax.xml.bind.annotation.XmlType;
/**
* Java class for FillType complex type.
*
*
The following schema fragment specifies the expected content contained within this class.
*
*
* <complexType name="FillType">
* <complexContent>
* <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
* <attribute name="color" type="{http://www.w3.org/2001/XMLSchema}string" />
* <attribute name="transparent" type="{http://www.w3.org/2001/XMLSchema}boolean" default="false" />
* </restriction>
* </complexContent>
* </complexType>
*
*
*
*/
@XmlAccessorType(XmlAccessType.FIELD)
@XmlType(name = "FillType")
public class Fill {
@XmlAttribute(name = "color")
protected String color;
@XmlAttribute(name = "transparent")
protected Boolean transparent;
/**
* Gets the value of the color property.
*
* @return
* possible object is
* {@link String }
*
*/
public String getColor() {
return color;
}
/**
* Sets the value of the color property.
*
* @param value
* allowed object is
* {@link String }
*
*/
public void setColor(String value) {
this.color = value;
}
/**
* Gets the value of the transparent property.
*
* @return
* possible object is
* {@link Boolean }
*
*/
public boolean isTransparent() {
if (transparent == null) {
return false;
} else {
return transparent;
}
}
/**
* Sets the value of the transparent property.
*
* @param value
* allowed object is
* {@link Boolean }
*
*/
public void setTransparent(Boolean value) {
this.transparent = value;
}
}