blob: 35939f42943b832442ac0aeab577751823a348a3 [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;
/**
* <!-- begin-user-doc -->
* A representation of the model object '<em><b>Clear Event</b></em>'.
* <!-- end-user-doc -->
*
* <!-- begin-model-doc -->
* Clears the events of eventMask
* <!-- end-model-doc -->
*
* <p>
* The following features are supported:
* </p>
* <ul>
* <li>{@link org.eclipse.app4mc.amalthea.model.ClearEvent#getEventMask <em>Event Mask</em>}</li>
* <li>{@link org.eclipse.app4mc.amalthea.model.ClearEvent#getCounter <em>Counter</em>}</li>
* </ul>
*
* @see org.eclipse.app4mc.amalthea.model.AmaltheaPackage#getClearEvent()
* @model
* @generated
*/
public interface ClearEvent extends ActivityGraphItem {
/**
* Returns the value of the '<em><b>Event Mask</b></em>' containment reference.
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
* @return the value of the '<em>Event Mask</em>' containment reference.
* @see #setEventMask(EventMask)
* @see org.eclipse.app4mc.amalthea.model.AmaltheaPackage#getClearEvent_EventMask()
* @model containment="true"
* @generated
*/
EventMask getEventMask();
/**
* Sets the value of the '{@link org.eclipse.app4mc.amalthea.model.ClearEvent#getEventMask <em>Event Mask</em>}' containment reference.
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
* @param value the new value of the '<em>Event Mask</em>' containment reference.
* @see #getEventMask()
* @generated
*/
void setEventMask(EventMask value);
/**
* 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#getClearEvent_Counter()
* @model containment="true"
* @generated
*/
Counter getCounter();
/**
* Sets the value of the '{@link org.eclipse.app4mc.amalthea.model.ClearEvent#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);
} // ClearEvent