All Downloads are FREE. Search and download functionalities are using the official Maven repository.

xuml.tools.miuml.metamodel.jaxb.Transition Maven / Gradle / Ivy

Go to download

Contains miUML metamodel schema and xuml-tools extensions schema and generates JAXB classes from those schemas.

There is a newer version: 0.6
Show newest version
//
// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, vhudson-jaxb-ri-2.1-2 
// See http://java.sun.com/xml/jaxb 
// Any modifications to this file will be lost upon recompilation of the source schema. 
// Generated on: 2015.08.19 at 09:36:38 PM AEST 
//


package xuml.tools.miuml.metamodel.jaxb;

import java.math.BigInteger;
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 Transition complex type. * *

The following schema fragment specifies the expected content contained within this class. * *

 * <complexType name="Transition">
 *   <complexContent>
 *     <extension base="{http://www.miuml.org/metamodel}EventResponse">
 *       <attribute name="State" use="required" type="{http://www.miuml.org/metamodel}Name" />
 *       <attribute name="Destination" use="required" type="{http://www.miuml.org/metamodel}Name" />
 *       <attribute name="EventID" use="required" type="{http://www.miuml.org/metamodel}Nominal" />
 *     </extension>
 *   </complexContent>
 * </complexType>
 * 
* * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "Transition") public class Transition extends EventResponse { @XmlAttribute(name = "State", required = true) protected String state; @XmlAttribute(name = "Destination", required = true) protected String destination; @XmlAttribute(name = "EventID", required = true) protected BigInteger eventID; /** * Gets the value of the state property. * * @return * possible object is * {@link String } * */ public String getState() { return state; } /** * Sets the value of the state property. * * @param value * allowed object is * {@link String } * */ public void setState(String value) { this.state = value; } /** * Gets the value of the destination property. * * @return * possible object is * {@link String } * */ public String getDestination() { return destination; } /** * Sets the value of the destination property. * * @param value * allowed object is * {@link String } * */ public void setDestination(String value) { this.destination = value; } /** * Gets the value of the eventID property. * * @return * possible object is * {@link BigInteger } * */ public BigInteger getEventID() { return eventID; } /** * Sets the value of the eventID property. * * @param value * allowed object is * {@link BigInteger } * */ public void setEventID(BigInteger value) { this.eventID = value; } }




© 2015 - 2025 Weber Informatics LLC | Privacy Policy