blob: 6823305315d64dca9876e4d090134acbdb8b0fb7 [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>Requirement</b></em>'.
* <!-- end-user-doc -->
*
* <p>
* The following features are supported:
* </p>
* <ul>
* <li>{@link org.eclipse.app4mc.amalthea.model.Requirement#getSeverity <em>Severity</em>}</li>
* <li>{@link org.eclipse.app4mc.amalthea.model.Requirement#getLimit <em>Limit</em>}</li>
* </ul>
*
* @see org.eclipse.app4mc.amalthea.model.AmaltheaPackage#getRequirement()
* @model abstract="true"
* @generated
*/
public interface Requirement extends BaseObject, INamed {
/**
* Returns the value of the '<em><b>Severity</b></em>' attribute.
* The literals are from the enumeration {@link org.eclipse.app4mc.amalthea.model.Severity}.
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
* @return the value of the '<em>Severity</em>' attribute.
* @see org.eclipse.app4mc.amalthea.model.Severity
* @see #setSeverity(Severity)
* @see org.eclipse.app4mc.amalthea.model.AmaltheaPackage#getRequirement_Severity()
* @model unique="false"
* @generated
*/
Severity getSeverity();
/**
* Sets the value of the '{@link org.eclipse.app4mc.amalthea.model.Requirement#getSeverity <em>Severity</em>}' attribute.
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
* @param value the new value of the '<em>Severity</em>' attribute.
* @see org.eclipse.app4mc.amalthea.model.Severity
* @see #getSeverity()
* @generated
*/
void setSeverity(Severity value);
/**
* Returns the value of the '<em><b>Limit</b></em>' containment reference.
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
* @return the value of the '<em>Limit</em>' containment reference.
* @see #setLimit(RequirementLimit)
* @see org.eclipse.app4mc.amalthea.model.AmaltheaPackage#getRequirement_Limit()
* @model containment="true" required="true"
* @generated
*/
RequirementLimit getLimit();
/**
* Sets the value of the '{@link org.eclipse.app4mc.amalthea.model.Requirement#getLimit <em>Limit</em>}' containment reference.
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
* @param value the new value of the '<em>Limit</em>' containment reference.
* @see #getLimit()
* @generated
*/
void setLimit(RequirementLimit value);
} // Requirement