blob: 825750a01f786d66c6ee3f96ca1520da3f7758bd [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;
/**
* <!-- begin-user-doc -->
* A representation of the model object '<em><b>Signal Handler</b></em>'.
* <!-- end-user-doc -->
*
* <p>
* The following features are supported:
* </p>
* <ul>
* <li>{@link org.eclipse.osbp.xtext.signal.SignalHandler#getWatcher <em>Watcher</em>}</li>
* <li>{@link org.eclipse.osbp.xtext.signal.SignalHandler#getHandler <em>Handler</em>}</li>
* <li>{@link org.eclipse.osbp.xtext.signal.SignalHandler#getNotification <em>Notification</em>}</li>
* </ul>
*
* @see org.eclipse.osbp.xtext.signal.SignalDSLPackage#getSignalHandler()
* @model
* @generated
*/
public interface SignalHandler extends SignalLazyResolver {
/**
* Returns the value of the '<em><b>Watcher</b></em>' reference.
* <!-- begin-user-doc -->
* <p>
* If the meaning of the '<em>Watcher</em>' reference isn't clear,
* there really should be more of a description here...
* </p>
* <!-- end-user-doc -->
* @return the value of the '<em>Watcher</em>' reference.
* @see #setWatcher(SignalWatcher)
* @see org.eclipse.osbp.xtext.signal.SignalDSLPackage#getSignalHandler_Watcher()
* @model
* @generated
*/
SignalWatcher getWatcher();
/**
* Sets the value of the '{@link org.eclipse.osbp.xtext.signal.SignalHandler#getWatcher <em>Watcher</em>}' reference.
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
* @param value the new value of the '<em>Watcher</em>' reference.
* @see #getWatcher()
* @generated
*/
void setWatcher(SignalWatcher value);
/**
* Returns the value of the '<em><b>Handler</b></em>' containment reference.
* <!-- begin-user-doc -->
* <p>
* If the meaning of the '<em>Handler</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>Handler</em>' containment reference.
* @see #setHandler(SignalHandling)
* @see org.eclipse.osbp.xtext.signal.SignalDSLPackage#getSignalHandler_Handler()
* @model containment="true"
* @generated
*/
SignalHandling getHandler();
/**
* Sets the value of the '{@link org.eclipse.osbp.xtext.signal.SignalHandler#getHandler <em>Handler</em>}' containment reference.
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
* @param value the new value of the '<em>Handler</em>' containment reference.
* @see #getHandler()
* @generated
*/
void setHandler(SignalHandling value);
/**
* Returns the value of the '<em><b>Notification</b></em>' containment reference.
* <!-- begin-user-doc -->
* <p>
* If the meaning of the '<em>Notification</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>Notification</em>' containment reference.
* @see #setNotification(SignalNotification)
* @see org.eclipse.osbp.xtext.signal.SignalDSLPackage#getSignalHandler_Notification()
* @model containment="true"
* @generated
*/
SignalNotification getNotification();
/**
* Sets the value of the '{@link org.eclipse.osbp.xtext.signal.SignalHandler#getNotification <em>Notification</em>}' containment reference.
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
* @param value the new value of the '<em>Notification</em>' containment reference.
* @see #getNotification()
* @generated
*/
void setNotification(SignalNotification value);
} // SignalHandler