blob: 57af05afa95bda9138d17ede3acb1c8d25dd0f1d [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>Periodic Activation</b></em>'.
* <!-- end-user-doc -->
*
* <!-- begin-model-doc -->
* Min and Max execution frequency within a task or timeslice
* <!-- end-model-doc -->
*
* <p>
* The following features are supported:
* </p>
* <ul>
* <li>{@link org.eclipse.app4mc.amalthea.model.PeriodicActivation#getMin <em>Min</em>}</li>
* <li>{@link org.eclipse.app4mc.amalthea.model.PeriodicActivation#getMax <em>Max</em>}</li>
* <li>{@link org.eclipse.app4mc.amalthea.model.PeriodicActivation#getRecurrence <em>Recurrence</em>}</li>
* <li>{@link org.eclipse.app4mc.amalthea.model.PeriodicActivation#getOffset <em>Offset</em>}</li>
* </ul>
*
* @see org.eclipse.app4mc.amalthea.model.AmaltheaPackage#getPeriodicActivation()
* @model
* @generated
*/
public interface PeriodicActivation extends Activation {
/**
* Returns the value of the '<em><b>Min</b></em>' containment reference.
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
* @return the value of the '<em>Min</em>' containment reference.
* @see #setMin(Time)
* @see org.eclipse.app4mc.amalthea.model.AmaltheaPackage#getPeriodicActivation_Min()
* @model containment="true"
* @generated
*/
Time getMin();
/**
* Sets the value of the '{@link org.eclipse.app4mc.amalthea.model.PeriodicActivation#getMin <em>Min</em>}' containment reference.
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
* @param value the new value of the '<em>Min</em>' containment reference.
* @see #getMin()
* @generated
*/
void setMin(Time value);
/**
* Returns the value of the '<em><b>Max</b></em>' containment reference.
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
* @return the value of the '<em>Max</em>' containment reference.
* @see #setMax(Time)
* @see org.eclipse.app4mc.amalthea.model.AmaltheaPackage#getPeriodicActivation_Max()
* @model containment="true"
* @generated
*/
Time getMax();
/**
* Sets the value of the '{@link org.eclipse.app4mc.amalthea.model.PeriodicActivation#getMax <em>Max</em>}' containment reference.
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
* @param value the new value of the '<em>Max</em>' containment reference.
* @see #getMax()
* @generated
*/
void setMax(Time value);
/**
* Returns the value of the '<em><b>Recurrence</b></em>' containment reference.
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
* @return the value of the '<em>Recurrence</em>' containment reference.
* @see #setRecurrence(Time)
* @see org.eclipse.app4mc.amalthea.model.AmaltheaPackage#getPeriodicActivation_Recurrence()
* @model containment="true" required="true"
* @generated
*/
Time getRecurrence();
/**
* Sets the value of the '{@link org.eclipse.app4mc.amalthea.model.PeriodicActivation#getRecurrence <em>Recurrence</em>}' containment reference.
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
* @param value the new value of the '<em>Recurrence</em>' containment reference.
* @see #getRecurrence()
* @generated
*/
void setRecurrence(Time value);
/**
* Returns the value of the '<em><b>Offset</b></em>' containment reference.
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
* @return the value of the '<em>Offset</em>' containment reference.
* @see #setOffset(Time)
* @see org.eclipse.app4mc.amalthea.model.AmaltheaPackage#getPeriodicActivation_Offset()
* @model containment="true"
* @generated
*/
Time getOffset();
/**
* Sets the value of the '{@link org.eclipse.app4mc.amalthea.model.PeriodicActivation#getOffset <em>Offset</em>}' containment reference.
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
* @param value the new value of the '<em>Offset</em>' containment reference.
* @see #getOffset()
* @generated
*/
void setOffset(Time value);
} // PeriodicActivation