blob: c3713fee81ca6467157458ec865f65cda24fc3a2 [file] [log] [blame]
/**
* Copyright (c) 2014 Fraunhofer FOKUS
* 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:
* Max Bureck
*/
package org.eclipse.upr.bpmnprof;
/**
* <!-- begin-user-doc -->
* A representation of the model object '<em><b>Transaction</b></em>'.
* <!-- end-user-doc -->
*
* <!-- begin-model-doc -->
* <p>From package BPMNProfile::Process::Activities.</p>
* <!-- end-model-doc -->
*
* <p>
* The following features are supported:
* <ul>
* <li>{@link org.eclipse.upr.bpmnprof.Transaction#getMethod <em>Method</em>}</li>
* </ul>
* </p>
*
* @see org.eclipse.upr.bpmnprof.BpmnprofPackage#getTransaction()
* @model
* @generated
*/
public interface Transaction extends SubProcess {
/**
* Returns the value of the '<em><b>Method</b></em>' attribute.
* The default value is <code>"\"##compensate\""</code>.
* <!-- begin-user-doc -->
* <p>
* If the meaning of the '<em>Method</em>' attribute isn't clear,
* there really should be more of a description here...
* </p>
* <!-- end-user-doc -->
* @return the value of the '<em>Method</em>' attribute.
* @see #setMethod(String)
* @see org.eclipse.upr.bpmnprof.BpmnprofPackage#getTransaction_Method()
* @model default="\"##compensate\"" dataType="org.eclipse.uml2.types.String" required="true" ordered="false"
* @generated
*/
String getMethod();
/**
* Sets the value of the '{@link org.eclipse.upr.bpmnprof.Transaction#getMethod <em>Method</em>}' attribute.
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
* @param value the new value of the '<em>Method</em>' attribute.
* @see #getMethod()
* @generated
*/
void setMethod(String value);
} // Transaction