blob: a75fa32d61a11719c84e0ff5ef219976449756bf [file] [log] [blame]
/**
* *******************************************************************************
* Copyright (c) 2015-2022 Robert Bosch GmbH and others.
*
* This program and the accompanying materials are made
* available under the terms of the Eclipse Public License 2.0
* which is available at https://www.eclipse.org/legal/epl-2.0/
*
* SPDX-License-Identifier: EPL-2.0
*
* Generated using Eclipse EMF
*
* *******************************************************************************
*/
package org.eclipse.app4mc.amalthea.model;
/**
* <!-- begin-user-doc -->
* A representation of the model object '<em><b>Mode Label Event</b></em>'.
* <!-- end-user-doc -->
*
* <!-- begin-model-doc -->
* Describes the event of a mode label access
* eventType: The type of event
* entity: The accessed mode label that fires the event
* runnable: The runnable that accesses the mode label (optional)
* process: The process that accesses the mode label (optional)
* <!-- end-model-doc -->
*
* <p>
* The following features are supported:
* </p>
* <ul>
* <li>{@link org.eclipse.app4mc.amalthea.model.ModeLabelEvent#getEventType <em>Event Type</em>}</li>
* <li>{@link org.eclipse.app4mc.amalthea.model.ModeLabelEvent#getEntity <em>Entity</em>}</li>
* <li>{@link org.eclipse.app4mc.amalthea.model.ModeLabelEvent#getRunnable <em>Runnable</em>}</li>
* <li>{@link org.eclipse.app4mc.amalthea.model.ModeLabelEvent#getProcess <em>Process</em>}</li>
* </ul>
*
* @see org.eclipse.app4mc.amalthea.model.AmaltheaPackage#getModeLabelEvent()
* @model
* @generated
*/
public interface ModeLabelEvent extends TriggerEvent {
/**
* Returns the value of the '<em><b>Event Type</b></em>' attribute.
* The literals are from the enumeration {@link org.eclipse.app4mc.amalthea.model.ModeLabelEventType}.
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
* @return the value of the '<em>Event Type</em>' attribute.
* @see org.eclipse.app4mc.amalthea.model.ModeLabelEventType
* @see #setEventType(ModeLabelEventType)
* @see org.eclipse.app4mc.amalthea.model.AmaltheaPackage#getModeLabelEvent_EventType()
* @model unique="false"
* @generated
*/
ModeLabelEventType getEventType();
/**
* Sets the value of the '{@link org.eclipse.app4mc.amalthea.model.ModeLabelEvent#getEventType <em>Event Type</em>}' attribute.
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
* @param value the new value of the '<em>Event Type</em>' attribute.
* @see org.eclipse.app4mc.amalthea.model.ModeLabelEventType
* @see #getEventType()
* @generated
*/
void setEventType(ModeLabelEventType value);
/**
* Returns the value of the '<em><b>Entity</b></em>' reference.
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
* @return the value of the '<em>Entity</em>' reference.
* @see #setEntity(ModeLabel)
* @see org.eclipse.app4mc.amalthea.model.AmaltheaPackage#getModeLabelEvent_Entity()
* @model
* @generated
*/
ModeLabel getEntity();
/**
* Sets the value of the '{@link org.eclipse.app4mc.amalthea.model.ModeLabelEvent#getEntity <em>Entity</em>}' reference.
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
* @param value the new value of the '<em>Entity</em>' reference.
* @see #getEntity()
* @generated
*/
void setEntity(ModeLabel value);
/**
* Returns the value of the '<em><b>Runnable</b></em>' reference.
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
* @return the value of the '<em>Runnable</em>' reference.
* @see #setRunnable(org.eclipse.app4mc.amalthea.model.Runnable)
* @see org.eclipse.app4mc.amalthea.model.AmaltheaPackage#getModeLabelEvent_Runnable()
* @model
* @generated
*/
org.eclipse.app4mc.amalthea.model.Runnable getRunnable();
/**
* Sets the value of the '{@link org.eclipse.app4mc.amalthea.model.ModeLabelEvent#getRunnable <em>Runnable</em>}' reference.
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
* @param value the new value of the '<em>Runnable</em>' reference.
* @see #getRunnable()
* @generated
*/
void setRunnable(org.eclipse.app4mc.amalthea.model.Runnable value);
/**
* Returns the value of the '<em><b>Process</b></em>' reference.
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
* @return the value of the '<em>Process</em>' reference.
* @see #setProcess(org.eclipse.app4mc.amalthea.model.Process)
* @see org.eclipse.app4mc.amalthea.model.AmaltheaPackage#getModeLabelEvent_Process()
* @model
* @generated
*/
org.eclipse.app4mc.amalthea.model.Process getProcess();
/**
* Sets the value of the '{@link org.eclipse.app4mc.amalthea.model.ModeLabelEvent#getProcess <em>Process</em>}' reference.
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
* @param value the new value of the '<em>Process</em>' reference.
* @see #getProcess()
* @generated
*/
void setProcess(org.eclipse.app4mc.amalthea.model.Process value);
} // ModeLabelEvent