blob: a3d89555d789848f91321ec9b359cdc11ad686f6 [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>Time Requirement Limit</b></em>'.
* <!-- end-user-doc -->
*
* <p>
* The following features are supported:
* </p>
* <ul>
* <li>{@link org.eclipse.app4mc.amalthea.model.TimeRequirementLimit#getMetric <em>Metric</em>}</li>
* <li>{@link org.eclipse.app4mc.amalthea.model.TimeRequirementLimit#getLimitValue <em>Limit Value</em>}</li>
* </ul>
*
* @see org.eclipse.app4mc.amalthea.model.AmaltheaPackage#getTimeRequirementLimit()
* @model
* @generated
*/
public interface TimeRequirementLimit extends RequirementLimit {
/**
* Returns the value of the '<em><b>Metric</b></em>' attribute.
* The literals are from the enumeration {@link org.eclipse.app4mc.amalthea.model.TimeMetric}.
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
* @return the value of the '<em>Metric</em>' attribute.
* @see org.eclipse.app4mc.amalthea.model.TimeMetric
* @see #setMetric(TimeMetric)
* @see org.eclipse.app4mc.amalthea.model.AmaltheaPackage#getTimeRequirementLimit_Metric()
* @model unique="false"
* @generated
*/
TimeMetric getMetric();
/**
* Sets the value of the '{@link org.eclipse.app4mc.amalthea.model.TimeRequirementLimit#getMetric <em>Metric</em>}' attribute.
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
* @param value the new value of the '<em>Metric</em>' attribute.
* @see org.eclipse.app4mc.amalthea.model.TimeMetric
* @see #getMetric()
* @generated
*/
void setMetric(TimeMetric value);
/**
* Returns the value of the '<em><b>Limit Value</b></em>' containment reference.
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
* @return the value of the '<em>Limit Value</em>' containment reference.
* @see #setLimitValue(Time)
* @see org.eclipse.app4mc.amalthea.model.AmaltheaPackage#getTimeRequirementLimit_LimitValue()
* @model containment="true" required="true"
* @generated
*/
Time getLimitValue();
/**
* Sets the value of the '{@link org.eclipse.app4mc.amalthea.model.TimeRequirementLimit#getLimitValue <em>Limit Value</em>}' containment reference.
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
* @param value the new value of the '<em>Limit Value</em>' containment reference.
* @see #getLimitValue()
* @generated
*/
void setLimitValue(Time value);
} // TimeRequirementLimit