blob: 161d25492554befe149e0c7ccf3532a49ed17082 [file] [log] [blame]
/**
* <copyright>
* </copyright>
*
* $Id: IfElse.java,v 1.2 2011/03/05 21:37:36 auhl Exp $
*/
package behavioral.actions;
/**
* <!-- begin-user-doc -->
* A representation of the model object '<em><b>If Else</b></em>'.
* <!-- end-user-doc -->
*
*
* @see behavioral.actions.ActionsPackage#getIfElse()
* @model
* @generated
*/
public interface IfElse extends ConditionalStatement, StatementWithNestedBlocks {
/**
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
* @model kind="operation" unique="false" required="true" ordered="false"
* annotation="http://www.eclipse.org/emf/2002/Ecore/OCL body='self.nestedBlocks->at(1)'"
* annotation="http://www.eclipse.org/emf/2002/Ecore constraints='body'"
* @generated
*/
Block getIfBlock();
/**
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
* @model kind="operation" unique="false" required="true" ordered="false"
* annotation="http://www.eclipse.org/emf/2002/Ecore/OCL body='if self.nestedBlocks->size() > 1 then\n self.nestedBlocks->at(2)\n else\n null\n endif'"
* annotation="http://www.eclipse.org/emf/2002/Ecore constraints='body'"
* @generated
*/
Block getElseBlock();
} // IfElse