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

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

//
// 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 CallEvent complex type. * *

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

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




© 2015 - 2025 Weber Informatics LLC | Privacy Policy