/**
* <copyright>
* </copyright>
*
* $Id$
*/
package org.omg.schema.spec.bpmn.BPMN;
import javax.xml.namespace.QName;
/**
* <!-- begin-user-doc -->
* A representation of the model object '<em><b>TEscalation Event Definition</b></em>'.
* <!-- end-user-doc -->
*
* <p>
* The following features are supported:
* <ul>
* <li>{@link org.omg.schema.spec.bpmn.BPMN.TEscalationEventDefinition#getEscalationCode <em>Escalation Code</em>}</li>
* <li>{@link org.omg.schema.spec.bpmn.BPMN.TEscalationEventDefinition#getEscalationRef <em>Escalation Ref</em>}</li>
* </ul>
* </p>
*
* @see org.omg.schema.spec.bpmn.BPMN.BPMNPackage#getTEscalationEventDefinition()
* @model extendedMetaData="name='tEscalationEventDefinition' kind='elementOnly'"
* @generated
*/
public interface TEscalationEventDefinition extends TEventDefinition {
/**
* Returns the value of the '<em><b>Escalation Code</b></em>' attribute.
* <!-- begin-user-doc -->
* <p>
* If the meaning of the '<em>Escalation Code</em>' attribute isn't clear,
* there really should be more of a description here...
* </p>
* <!-- end-user-doc -->
* @return the value of the '<em>Escalation Code</em>' attribute.
* @see #setEscalationCode(String)
* @see org.omg.schema.spec.bpmn.BPMN.BPMNPackage#getTEscalationEventDefinition_EscalationCode()
* @model dataType="org.eclipse.emf.ecore.xml.type.String"
* extendedMetaData="kind='attribute' name='escalationCode'"
* @generated
*/
String getEscalationCode();
/**
* Sets the value of the '{@link org.omg.schema.spec.bpmn.BPMN.TEscalationEventDefinition#getEscalationCode <em>Escalation Code</em>}' attribute.
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
* @param value the new value of the '<em>Escalation Code</em>' attribute.
* @see #getEscalationCode()
* @generated
*/
void setEscalationCode(String value);
/**
* Returns the value of the '<em><b>Escalation Ref</b></em>' attribute.
* <!-- begin-user-doc -->
* <p>
* If the meaning of the '<em>Escalation 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>Escalation Ref</em>' attribute.
* @see #setEscalationRef(QName)
* @see org.omg.schema.spec.bpmn.BPMN.BPMNPackage#getTEscalationEventDefinition_EscalationRef()
* @model dataType="org.eclipse.emf.ecore.xml.type.QName"
* extendedMetaData="kind='attribute' name='escalationRef'"
* @generated
*/
QName getEscalationRef();
/**
* Sets the value of the '{@link org.omg.schema.spec.bpmn.BPMN.TEscalationEventDefinition#getEscalationRef <em>Escalation Ref</em>}' attribute.
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
* @param value the new value of the '<em>Escalation Ref</em>' attribute.
* @see #getEscalationRef()
* @generated
*/
void setEscalationRef(QName value);
} // TEscalationEventDefinition
|