blob: 159dba73b5fb39ba22787c002c853a9a3f9d1ca7 [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;
/**
* <!-- begin-user-doc -->
* A representation of the model object '<em><b>Statemachine Operation Parameter</b></em>'.
* <!-- end-user-doc -->
*
* <p>
* The following features are supported:
* <ul>
* <li>{@link org.eclipse.osbp.xtext.statemachine.StatemachineOperationParameter#getSource <em>Source</em>}</li>
* </ul>
* </p>
*
* @see org.eclipse.osbp.xtext.statemachine.StatemachineDSLPackage#getStatemachineOperationParameter()
* @model
* @generated
*/
public interface StatemachineOperationParameter extends StatemachineAction {
/**
* Returns the value of the '<em><b>Source</b></em>' containment reference.
* <!-- begin-user-doc -->
* <p>
* If the meaning of the '<em>Source</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>Source</em>' containment reference.
* @see #setSource(StatemachineActionFieldConcatenation)
* @see org.eclipse.osbp.xtext.statemachine.StatemachineDSLPackage#getStatemachineOperationParameter_Source()
* @model containment="true"
* @generated
*/
StatemachineActionFieldConcatenation getSource();
/**
* Sets the value of the '{@link org.eclipse.osbp.xtext.statemachine.StatemachineOperationParameter#getSource <em>Source</em>}' containment reference.
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
* @param value the new value of the '<em>Source</em>' containment reference.
* @see #getSource()
* @generated
*/
void setSource(StatemachineActionFieldConcatenation value);
} // StatemachineOperationParameter