blob: 14f68b5f5b3d63af54f838c22028f0f2b897d6b7 [file] [log] [blame]
/**
* Copyright (c) 2011, 2018 - 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
*
* Contributors:
* Christophe Loetz (Loetz GmbH&Co.KG) - initial implementation
*
* generated from SignalDSL.xcore
*
*
*/
package org.eclipse.osbp.xtext.signal;
import org.eclipse.osbp.xtext.datainterchange.DataInterchange;
/**
* <!-- begin-user-doc -->
* A representation of the model object '<em><b>Signal Handling</b></em>'.
* <!-- end-user-doc -->
*
* <p>
* The following features are supported:
* </p>
* <ul>
* <li>{@link org.eclipse.osbp.xtext.signal.SignalHandling#getActionType <em>Action Type</em>}</li>
* <li>{@link org.eclipse.osbp.xtext.signal.SignalHandling#getDataRef <em>Data Ref</em>}</li>
* </ul>
*
* @see org.eclipse.osbp.xtext.signal.SignalDSLPackage#getSignalHandling()
* @model
* @generated
*/
public interface SignalHandling extends SignalLazyResolver {
/**
* Returns the value of the '<em><b>Action Type</b></em>' attribute.
* The literals are from the enumeration {@link org.eclipse.osbp.xtext.signal.SignalHandlerTypeEnum}.
* <!-- begin-user-doc -->
* <p>
* If the meaning of the '<em>Action Type</em>' attribute isn't clear,
* there really should be more of a description here...
* </p>
* <!-- end-user-doc -->
* @return the value of the '<em>Action Type</em>' attribute.
* @see org.eclipse.osbp.xtext.signal.SignalHandlerTypeEnum
* @see #setActionType(SignalHandlerTypeEnum)
* @see org.eclipse.osbp.xtext.signal.SignalDSLPackage#getSignalHandling_ActionType()
* @model unique="false"
* @generated
*/
SignalHandlerTypeEnum getActionType();
/**
* Sets the value of the '{@link org.eclipse.osbp.xtext.signal.SignalHandling#getActionType <em>Action Type</em>}' attribute.
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
* @param value the new value of the '<em>Action Type</em>' attribute.
* @see org.eclipse.osbp.xtext.signal.SignalHandlerTypeEnum
* @see #getActionType()
* @generated
*/
void setActionType(SignalHandlerTypeEnum value);
/**
* Returns the value of the '<em><b>Data Ref</b></em>' reference.
* <!-- begin-user-doc -->
* <p>
* If the meaning of the '<em>Data Ref</em>' reference isn't clear,
* there really should be more of a description here...
* </p>
* <!-- end-user-doc -->
* @return the value of the '<em>Data Ref</em>' reference.
* @see #setDataRef(DataInterchange)
* @see org.eclipse.osbp.xtext.signal.SignalDSLPackage#getSignalHandling_DataRef()
* @model
* @generated
*/
DataInterchange getDataRef();
/**
* Sets the value of the '{@link org.eclipse.osbp.xtext.signal.SignalHandling#getDataRef <em>Data Ref</em>}' reference.
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
* @param value the new value of the '<em>Data Ref</em>' reference.
* @see #getDataRef()
* @generated
*/
void setDataRef(DataInterchange value);
} // SignalHandling