blob: 2f1f3c28f9381e5b2f26fbe251807602d0226323 [file] [log] [blame]
/**
* *******************************************************************************
* Copyright (c) 2015-2021 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;
import org.eclipse.emf.common.util.EList;
/**
* <!-- begin-user-doc -->
* A representation of the model object '<em><b>Event Activation</b></em>'.
* <!-- end-user-doc -->
*
* <!-- begin-model-doc -->
* Activation which is triggered by an event.
* <!-- end-model-doc -->
*
* <p>
* The following features are supported:
* </p>
* <ul>
* <li>{@link org.eclipse.app4mc.amalthea.model.EventActivation#getTriggeringEvents <em>Triggering Events</em>}</li>
* <li>{@link org.eclipse.app4mc.amalthea.model.EventActivation#getCounter <em>Counter</em>}</li>
* </ul>
*
* @see org.eclipse.app4mc.amalthea.model.AmaltheaPackage#getEventActivation()
* @model
* @generated
*/
public interface EventActivation extends Activation {
/**
* Returns the value of the '<em><b>Triggering Events</b></em>' reference list.
* The list contents are of type {@link org.eclipse.app4mc.amalthea.model.TriggerEvent}.
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
* @return the value of the '<em>Triggering Events</em>' reference list.
* @see org.eclipse.app4mc.amalthea.model.AmaltheaPackage#getEventActivation_TriggeringEvents()
* @model required="true"
* @generated
*/
EList<TriggerEvent> getTriggeringEvents();
/**
* Returns the value of the '<em><b>Counter</b></em>' containment reference.
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
* @return the value of the '<em>Counter</em>' containment reference.
* @see #setCounter(Counter)
* @see org.eclipse.app4mc.amalthea.model.AmaltheaPackage#getEventActivation_Counter()
* @model containment="true"
* @generated
*/
Counter getCounter();
/**
* Sets the value of the '{@link org.eclipse.app4mc.amalthea.model.EventActivation#getCounter <em>Counter</em>}' containment reference.
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
* @param value the new value of the '<em>Counter</em>' containment reference.
* @see #getCounter()
* @generated
*/
void setCounter(Counter value);
} // EventActivation