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

org.omg.uml.SignalEvent Maven / Gradle / Ivy

There is a newer version: 4.0.0
Show newest version
//
// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.5-b10 
// See http://java.sun.com/xml/jaxb 
// Any modifications to this file will be lost upon recompilation of the source schema. 
// Generated on: 2013.09.13 at 12:06:48 PM EST 
//


package org.omg.uml;

import javax.xml.bind.annotation.XmlAccessType;
import javax.xml.bind.annotation.XmlAccessorType;
import javax.xml.bind.annotation.XmlElement;
import javax.xml.bind.annotation.XmlType;


/**
 * 

Java class for SignalEvent complex type. * *

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

 * <complexType name="SignalEvent">
 *   <complexContent>
 *     <extension base="{}MessageEvent">
 *       <sequence>
 *         <element name="signal" type="{}Signal"/>
 *       </sequence>
 *     </extension>
 *   </complexContent>
 * </complexType>
 * 
* * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "SignalEvent", propOrder = { "signal" }) public class SignalEvent extends MessageEvent { @XmlElement(required = true) protected Signal signal; /** * Gets the value of the signal property. * * @return * possible object is * {@link Signal } * */ public Signal getSignal() { return signal; } /** * Sets the value of the signal property. * * @param value * allowed object is * {@link Signal } * */ public void setSignal(Signal value) { this.signal = value; } }




© 2015 - 2025 Weber Informatics LLC | Privacy Policy