blob: b9082cc3553ccfb00bb79eeae4f9e4170394c5f2 [file] [log] [blame]
/**
* Copyright (c) 2000-2009, Intalio Inc.
* All rights reserved. This program and the accompanying materials
* are made available under the terms of the Eclipse Public License v1.0
* which accompanies this distribution, and is available at
* http://www.eclipse.org/legal/epl-v10.html
*
* Contributors:
* Intalio Inc. - initial API and implementation
*
*/
package org.eclipse.mdt.bpmn;
import javax.xml.namespace.QName;
/**
* <!-- begin-user-doc -->
* A representation of the model object '<em><b>Message Event Definition</b></em>'.
* <!-- end-user-doc -->
*
* <p>
* The following features are supported:
* <ul>
* <li>{@link org.eclipse.mdt.bpmn.MessageEventDefinition#getOperationRef <em>Operation Ref</em>}</li>
* <li>{@link org.eclipse.mdt.bpmn.MessageEventDefinition#getMessageRef <em>Message Ref</em>}</li>
* </ul>
* </p>
*
* @see org.eclipse.mdt.bpmn.BpmnPackage#getMessageEventDefinition()
* @model extendedMetaData="name='tMessageEventDefinition' kind='elementOnly'"
* @generated
*/
public interface MessageEventDefinition extends EventDefinition {
/**
* Returns the value of the '<em><b>Operation Ref</b></em>' attribute.
* <!-- begin-user-doc -->
* <p>
* If the meaning of the '<em>Operation Ref</em>' attribute isn't clear,
* there really should be more of a description here...
* </p>
* <!-- end-user-doc -->
* @return the value of the '<em>Operation Ref</em>' attribute.
* @see #setOperationRef(QName)
* @see org.eclipse.mdt.bpmn.BpmnPackage#getMessageEventDefinition_OperationRef()
* @model dataType="org.eclipse.emf.ecore.xml.type.QName"
* extendedMetaData="kind='element' name='operationRef' namespace='##targetNamespace'"
* @generated
*/
QName getOperationRef();
/**
* Sets the value of the '{@link org.eclipse.mdt.bpmn.MessageEventDefinition#getOperationRef <em>Operation Ref</em>}' attribute.
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
* @param value the new value of the '<em>Operation Ref</em>' attribute.
* @see #getOperationRef()
* @generated
*/
void setOperationRef(QName value);
/**
* Returns the value of the '<em><b>Message Ref</b></em>' attribute.
* <!-- begin-user-doc -->
* <p>
* If the meaning of the '<em>Message Ref</em>' attribute isn't clear,
* there really should be more of a description here...
* </p>
* <!-- end-user-doc -->
* @return the value of the '<em>Message Ref</em>' attribute.
* @see #setMessageRef(QName)
* @see org.eclipse.mdt.bpmn.BpmnPackage#getMessageEventDefinition_MessageRef()
* @model dataType="org.eclipse.emf.ecore.xml.type.QName"
* extendedMetaData="kind='attribute' name='messageRef'"
* @generated
*/
QName getMessageRef();
/**
* Sets the value of the '{@link org.eclipse.mdt.bpmn.MessageEventDefinition#getMessageRef <em>Message Ref</em>}' attribute.
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
* @param value the new value of the '<em>Message Ref</em>' attribute.
* @see #getMessageRef()
* @generated
*/
void setMessageRef(QName value);
} // MessageEventDefinition