com.tibco.xmlns.bw.process._2003.Transition 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="from" type="{http://www.w3.org/2001/XMLSchema}string"/>
* <element name="to" type="{http://www.w3.org/2001/XMLSchema}string"/>
* <element name="lineType" type="{http://www.w3.org/2001/XMLSchema}string"/>
* <element name="lineColor" type="{http://www.w3.org/2001/XMLSchema}string"/>
* <element name="conditionType" type="{http://www.w3.org/2001/XMLSchema}string"/>
* </sequence>
* </restriction>
* </complexContent>
* </complexType>
*
*
*
*/
@XmlAccessorType(XmlAccessType.FIELD)
@XmlType(name = "", propOrder = {
"from",
"to",
"lineType",
"lineColor",
"conditionType"
})
@XmlRootElement(name = "transition")
public class Transition {
@XmlElement(required = true)
protected String from;
@XmlElement(required = true)
protected String to;
@XmlElement(required = true)
protected String lineType;
@XmlElement(required = true)
protected String lineColor;
@XmlElement(required = true)
protected String conditionType;
/**
* Gets the value of the from property.
*
* @return
* possible object is
* {@link String }
*
*/
public String getFrom() {
return from;
}
/**
* Sets the value of the from property.
*
* @param value
* allowed object is
* {@link String }
*
*/
public void setFrom(String value) {
this.from = value;
}
/**
* Gets the value of the to property.
*
* @return
* possible object is
* {@link String }
*
*/
public String getTo() {
return to;
}
/**
* Sets the value of the to property.
*
* @param value
* allowed object is
* {@link String }
*
*/
public void setTo(String value) {
this.to = value;
}
/**
* Gets the value of the lineType property.
*
* @return
* possible object is
* {@link String }
*
*/
public String getLineType() {
return lineType;
}
/**
* Sets the value of the lineType property.
*
* @param value
* allowed object is
* {@link String }
*
*/
public void setLineType(String value) {
this.lineType = value;
}
/**
* Gets the value of the lineColor property.
*
* @return
* possible object is
* {@link String }
*
*/
public String getLineColor() {
return lineColor;
}
/**
* Sets the value of the lineColor property.
*
* @param value
* allowed object is
* {@link String }
*
*/
public void setLineColor(String value) {
this.lineColor = value;
}
/**
* Gets the value of the conditionType property.
*
* @return
* possible object is
* {@link String }
*
*/
public String getConditionType() {
return conditionType;
}
/**
* Sets the value of the conditionType property.
*
* @param value
* allowed object is
* {@link String }
*
*/
public void setConditionType(String value) {
this.conditionType = value;
}
}