com.tibco.xmlns.bw.process._2003.Label Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of process-model Show documentation
Show all versions of process-model Show documentation
The targetNamespace of this schema is "http://xmlns.tibco.com/bw/process/2003"
The newest version!
//
// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.4-2
// See http://java.sun.com/xml/jaxb
// Any modifications to this file will be lost upon recompilation of the source schema.
// Generated on: 2014.06.03 at 10:20:18 AM CEST
//
package com.tibco.xmlns.bw.process._2003;
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 anonymous complex type.
*
*
The following schema fragment specifies the expected content contained within this class.
*
*
* <complexType>
* <complexContent>
* <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
* <sequence>
* <element name="name" type="{http://www.w3.org/2001/XMLSchema}string"/>
* <element name="description" type="{http://www.w3.org/2001/XMLSchema}string"/>
* <element name="x" type="{http://www.w3.org/2001/XMLSchema}string"/>
* <element name="y" type="{http://www.w3.org/2001/XMLSchema}string"/>
* <element name="width" type="{http://www.w3.org/2001/XMLSchema}string"/>
* <element name="height" type="{http://www.w3.org/2001/XMLSchema}string"/>
* <element name="fontColor" type="{http://www.w3.org/2001/XMLSchema}string"/>
* <element name="color" type="{http://www.w3.org/2001/XMLSchema}string"/>
* <element name="type" type="{http://www.w3.org/2001/XMLSchema}string"/>
* <element name="thickness" type="{http://www.w3.org/2001/XMLSchema}string"/>
* <element name="fade" type="{http://www.w3.org/2001/XMLSchema}string"/>
* </sequence>
* </restriction>
* </complexContent>
* </complexType>
*
*
*
*/
@XmlAccessorType(XmlAccessType.FIELD)
@XmlType(name = "", propOrder = {
"name",
"description",
"x",
"y",
"width",
"height",
"fontColor",
"color",
"type",
"thickness",
"fade"
})
@XmlRootElement(name = "label")
public class Label {
@XmlElement(required = true)
protected String name;
@XmlElement(required = true)
protected String description;
@XmlElement(required = true)
protected String x;
@XmlElement(required = true)
protected String y;
@XmlElement(required = true)
protected String width;
@XmlElement(required = true)
protected String height;
@XmlElement(required = true)
protected String fontColor;
@XmlElement(required = true)
protected String color;
@XmlElement(required = true)
protected String type;
@XmlElement(required = true)
protected String thickness;
@XmlElement(required = true)
protected String fade;
/**
* Gets the value of the name property.
*
* @return
* possible object is
* {@link String }
*
*/
public String getName() {
return name;
}
/**
* Sets the value of the name property.
*
* @param value
* allowed object is
* {@link String }
*
*/
public void setName(String value) {
this.name = value;
}
/**
* Gets the value of the description property.
*
* @return
* possible object is
* {@link String }
*
*/
public String getDescription() {
return description;
}
/**
* Sets the value of the description property.
*
* @param value
* allowed object is
* {@link String }
*
*/
public void setDescription(String value) {
this.description = value;
}
/**
* Gets the value of the x property.
*
* @return
* possible object is
* {@link String }
*
*/
public String getX() {
return x;
}
/**
* Sets the value of the x property.
*
* @param value
* allowed object is
* {@link String }
*
*/
public void setX(String value) {
this.x = value;
}
/**
* Gets the value of the y property.
*
* @return
* possible object is
* {@link String }
*
*/
public String getY() {
return y;
}
/**
* Sets the value of the y property.
*
* @param value
* allowed object is
* {@link String }
*
*/
public void setY(String value) {
this.y = value;
}
/**
* Gets the value of the width property.
*
* @return
* possible object is
* {@link String }
*
*/
public String getWidth() {
return width;
}
/**
* Sets the value of the width property.
*
* @param value
* allowed object is
* {@link String }
*
*/
public void setWidth(String value) {
this.width = value;
}
/**
* Gets the value of the height property.
*
* @return
* possible object is
* {@link String }
*
*/
public String getHeight() {
return height;
}
/**
* Sets the value of the height property.
*
* @param value
* allowed object is
* {@link String }
*
*/
public void setHeight(String value) {
this.height = value;
}
/**
* Gets the value of the fontColor property.
*
* @return
* possible object is
* {@link String }
*
*/
public String getFontColor() {
return fontColor;
}
/**
* Sets the value of the fontColor property.
*
* @param value
* allowed object is
* {@link String }
*
*/
public void setFontColor(String value) {
this.fontColor = value;
}
/**
* 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 type property.
*
* @return
* possible object is
* {@link String }
*
*/
public String getType() {
return type;
}
/**
* Sets the value of the type property.
*
* @param value
* allowed object is
* {@link String }
*
*/
public void setType(String value) {
this.type = value;
}
/**
* Gets the value of the thickness property.
*
* @return
* possible object is
* {@link String }
*
*/
public String getThickness() {
return thickness;
}
/**
* Sets the value of the thickness property.
*
* @param value
* allowed object is
* {@link String }
*
*/
public void setThickness(String value) {
this.thickness = value;
}
/**
* Gets the value of the fade property.
*
* @return
* possible object is
* {@link String }
*
*/
public String getFade() {
return fade;
}
/**
* Sets the value of the fade property.
*
* @param value
* allowed object is
* {@link String }
*
*/
public void setFade(String value) {
this.fade = value;
}
}