blob: f4659ecd392e24b3da9c826f667a6fd78aadd4fc [file] [log] [blame]
/**
* Copyright (c) 2011, 2017 - Loetz GmbH&Co.KG (69115 Heidelberg, Germany)
* 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
*
* Based on ideas from Xtext, Xtend, Xcore
*
* Contributors:
* Christophe Loetz (Loetz GmbH&Co.KG) - Initial implementation
*
*/
package org.eclipse.osbp.xtext.statemachine;
import org.eclipse.emf.common.util.EList;
/**
* <!-- begin-user-doc -->
* A representation of the model object '<em><b>Statemachine Action Conditional Transition</b></em>'.
* <!-- end-user-doc -->
*
* <p>
* The following features are supported:
* <ul>
* <li>{@link org.eclipse.osbp.xtext.statemachine.StatemachineActionConditionalTransition#getTransition <em>Transition</em>}</li>
* <li>{@link org.eclipse.osbp.xtext.statemachine.StatemachineActionConditionalTransition#getGuard <em>Guard</em>}</li>
* <li>{@link org.eclipse.osbp.xtext.statemachine.StatemachineActionConditionalTransition#getActions <em>Actions</em>}</li>
* </ul>
* </p>
*
* @see org.eclipse.osbp.xtext.statemachine.StatemachineDSLPackage#getStatemachineActionConditionalTransition()
* @model
* @generated
*/
public interface StatemachineActionConditionalTransition extends StatemachineAction {
/**
* Returns the value of the '<em><b>Transition</b></em>' reference.
* <!-- begin-user-doc -->
* <p>
* If the meaning of the '<em>Transition</em>' reference isn't clear,
* there really should be more of a description here...
* </p>
* <!-- end-user-doc -->
* @return the value of the '<em>Transition</em>' reference.
* @see #setTransition(StatemachineState)
* @see org.eclipse.osbp.xtext.statemachine.StatemachineDSLPackage#getStatemachineActionConditionalTransition_Transition()
* @model
* @generated
*/
StatemachineState getTransition();
/**
* Sets the value of the '{@link org.eclipse.osbp.xtext.statemachine.StatemachineActionConditionalTransition#getTransition <em>Transition</em>}' reference.
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
* @param value the new value of the '<em>Transition</em>' reference.
* @see #getTransition()
* @generated
*/
void setTransition(StatemachineState value);
/**
* Returns the value of the '<em><b>Guard</b></em>' containment reference.
* <!-- begin-user-doc -->
* <p>
* If the meaning of the '<em>Guard</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>Guard</em>' containment reference.
* @see #setGuard(StatemachineGuard)
* @see org.eclipse.osbp.xtext.statemachine.StatemachineDSLPackage#getStatemachineActionConditionalTransition_Guard()
* @model containment="true"
* @generated
*/
StatemachineGuard getGuard();
/**
* Sets the value of the '{@link org.eclipse.osbp.xtext.statemachine.StatemachineActionConditionalTransition#getGuard <em>Guard</em>}' containment reference.
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
* @param value the new value of the '<em>Guard</em>' containment reference.
* @see #getGuard()
* @generated
*/
void setGuard(StatemachineGuard value);
/**
* Returns the value of the '<em><b>Actions</b></em>' containment reference list.
* The list contents are of type {@link org.eclipse.osbp.xtext.statemachine.StatemachineAction}.
* <!-- begin-user-doc -->
* <p>
* If the meaning of the '<em>Actions</em>' containment reference list isn't clear,
* there really should be more of a description here...
* </p>
* <!-- end-user-doc -->
* @return the value of the '<em>Actions</em>' containment reference list.
* @see org.eclipse.osbp.xtext.statemachine.StatemachineDSLPackage#getStatemachineActionConditionalTransition_Actions()
* @model containment="true"
* @generated
*/
EList<StatemachineAction> getActions();
} // StatemachineActionConditionalTransition