blob: 9412384601065315bfce8c54e1c6f51cecd911b7 [file] [log] [blame]
/**
* <copyright>
* </copyright>
*
* $Id: SampleStructuredActivity.java,v 1.2 2011/03/10 18:18:18 rbrodt Exp $
*/
package org.eclipse.bpel.extensionsample.model;
import org.eclipse.bpel.model.Activity;
import org.eclipse.bpel.model.ExtensionActivity;
import org.eclipse.bpel.model.Variable;
/**
* <!-- begin-user-doc -->
* A representation of the model object '<em><b>Sample Structured Activity</b></em>'.
*
* Bug 120110 - the model has been updated to include a Variable
* reference for the SampleSimpleActivity and a Variable definition
* for the SampleStructuredActivity.
*
* <!-- end-user-doc -->
*
* <p>
* The following features are supported:
* <ul>
* <li>{@link org.eclipse.bpel.extensionsample.model.SampleStructuredActivity#getActivity <em>Activity</em>}</li>
* <li>{@link org.eclipse.bpel.extensionsample.model.SampleStructuredActivity#getVariable <em>Variable</em>}</li>
* </ul>
* </p>
*
* @see org.eclipse.bpel.extensionsample.model.ModelPackage#getSampleStructuredActivity()
* @model
* @generated
*/
public interface SampleStructuredActivity extends ExtensionActivity {
/**
* Returns the value of the '<em><b>Activity</b></em>' containment reference.
* <!-- begin-user-doc -->
* <p>
* If the meaning of the '<em>Activity</em>' containment reference isn't clear,
* there really should be more of a description here...
* </p>
* <!-- end-user-doc -->
* @return the value of the '<em>Activity</em>' containment reference.
* @see #setActivity(Activity)
* @see org.eclipse.bpel.extensionsample.model.ModelPackage#getSampleStructuredActivity_Activity()
* @model containment="true" required="true"
* @generated
*/
Activity getActivity();
/**
* Sets the value of the '{@link org.eclipse.bpel.extensionsample.model.SampleStructuredActivity#getActivity <em>Activity</em>}' containment reference.
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
* @param value the new value of the '<em>Activity</em>' containment reference.
* @see #getActivity()
* @generated
*/
void setActivity(Activity value);
/**
* Returns the value of the '<em><b>Variable</b></em>' containment reference.
* <!-- begin-user-doc -->
* <p>
* If the meaning of the '<em>Variable</em>' reference isn't clear,
* there really should be more of a description here...
* </p>
* <!-- end-user-doc -->
* @return the value of the '<em>Variable</em>' containment reference.
* @see #setVariable(Variable)
* @see org.eclipse.bpel.extensionsample.model.ModelPackage#getSampleStructuredActivity_Variable()
* @model containment="true" required="true"
* @generated
*/
Variable getVariable();
/**
* Sets the value of the '{@link org.eclipse.bpel.extensionsample.model.SampleStructuredActivity#getVariable <em>Variable</em>}' containment reference.
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
* @param value the new value of the '<em>Variable</em>' containment reference.
* @see #getVariable()
* @generated
*/
void setVariable(Variable value);
} // SampleStructuredActivity