blob: c00ada47eda412a1beb5f8d7c013acc895bfd23c [file] [log] [blame]
/**
* <copyright>
* </copyright>
*
* $Id: ForEach.java,v 1.6 2007/12/06 20:01:24 smoser Exp $
*/
package org.eclipse.bpel.model;
/**
* <!-- begin-user-doc -->
* A representation of the model object '<em><b>For Each</b></em>'.
* <!-- end-user-doc -->
*
* <p>
* The following features are supported:
* <ul>
* <li>{@link org.eclipse.bpel.model.ForEach#getStartCounterValue <em>Start Counter Value</em>}</li>
* <li>{@link org.eclipse.bpel.model.ForEach#getFinalCounterValue <em>Final Counter Value</em>}</li>
* <li>{@link org.eclipse.bpel.model.ForEach#getParallel <em>Parallel</em>}</li>
* <li>{@link org.eclipse.bpel.model.ForEach#getCounterName <em>Counter Name</em>}</li>
* <li>{@link org.eclipse.bpel.model.ForEach#getCompletionCondition <em>Completion Condition</em>}</li>
* <li>{@link org.eclipse.bpel.model.ForEach#getActivity <em>Activity</em>}</li>
* </ul>
* </p>
*
* @see org.eclipse.bpel.model.BPELPackage#getForEach()
* @model
* @generated
*/
public interface ForEach extends Activity {
/**
* Returns the value of the '<em><b>Start Counter Value</b></em>' containment reference.
* <!-- begin-user-doc -->
* <p>
* If the meaning of the '<em>Start Counter Value</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>Start Counter Value</em>' containment reference.
* @see #setStartCounterValue(Expression)
* @see org.eclipse.bpel.model.BPELPackage#getForEach_StartCounterValue()
* @model containment="true" required="true"
* @generated
*/
Expression getStartCounterValue();
/**
* Sets the value of the '{@link org.eclipse.bpel.model.ForEach#getStartCounterValue <em>Start Counter Value</em>}' containment reference.
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
* @param value the new value of the '<em>Start Counter Value</em>' containment reference.
* @see #getStartCounterValue()
* @generated
*/
void setStartCounterValue(Expression value);
/**
* Returns the value of the '<em><b>Final Counter Value</b></em>' containment reference.
* <!-- begin-user-doc -->
* <p>
* If the meaning of the '<em>Final Counter Value</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>Final Counter Value</em>' containment reference.
* @see #setFinalCounterValue(Expression)
* @see org.eclipse.bpel.model.BPELPackage#getForEach_FinalCounterValue()
* @model containment="true" required="true"
* @generated
*/
Expression getFinalCounterValue();
/**
* Sets the value of the '{@link org.eclipse.bpel.model.ForEach#getFinalCounterValue <em>Final Counter Value</em>}' containment reference.
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
* @param value the new value of the '<em>Final Counter Value</em>' containment reference.
* @see #getFinalCounterValue()
* @generated
*/
void setFinalCounterValue(Expression value);
/**
* Returns the value of the '<em><b>Parallel</b></em>' attribute.
* The default value is <code>"false"</code>.
* <!-- begin-user-doc -->
* <p>
* If the meaning of the '<em>Parallel</em>' attribute isn't clear,
* there really should be more of a description here...
* </p>
* <!-- end-user-doc -->
* @return the value of the '<em>Parallel</em>' attribute.
* @see #setParallel(Boolean)
* @see org.eclipse.bpel.model.BPELPackage#getForEach_Parallel()
* @model default="false" required="true"
* @generated
*/
Boolean getParallel();
/**
* Sets the value of the '{@link org.eclipse.bpel.model.ForEach#getParallel <em>Parallel</em>}' attribute.
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
* @param value the new value of the '<em>Parallel</em>' attribute.
* @see #getParallel()
*/
void setParallel(Boolean value);
/**
* Returns the value of the '<em><b>Counter Name</b></em>' containment reference.
* <!-- begin-user-doc -->
* <p>
* If the meaning of the '<em>Counter Name</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>Counter Name</em>' containment reference.
* @see #setCounterName(Variable)
* @see org.eclipse.bpel.model.BPELPackage#getForEach_CounterName()
* @model containment="true" required="true"
* @generated
*/
Variable getCounterName();
/**
* Sets the value of the '{@link org.eclipse.bpel.model.ForEach#getCounterName <em>Counter Name</em>}' containment reference.
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
* @param value the new value of the '<em>Counter Name</em>' containment reference.
* @see #getCounterName()
* @generated
*/
void setCounterName(Variable value);
/**
* Returns the value of the '<em><b>Completion Condition</b></em>' containment reference.
* <!-- begin-user-doc -->
* <p>
* If the meaning of the '<em>Completion Condition</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>Completion Condition</em>' containment reference.
* @see #setCompletionCondition(CompletionCondition)
* @see org.eclipse.bpel.model.BPELPackage#getForEach_CompletionCondition()
* @model containment="true"
* @generated
*/
CompletionCondition getCompletionCondition();
/**
* Sets the value of the '{@link org.eclipse.bpel.model.ForEach#getCompletionCondition <em>Completion Condition</em>}' containment reference.
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
* @param value the new value of the '<em>Completion Condition</em>' containment reference.
* @see #getCompletionCondition()
* @generated
*/
void setCompletionCondition(CompletionCondition value);
/**
* 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.model.BPELPackage#getForEach_Activity()
* @model containment="true" required="true"
* @generated
*/
Activity getActivity();
/**
* Sets the value of the '{@link org.eclipse.bpel.model.ForEach#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);
} // ForEach