blob: a423e0e3eef611e6ce25bfe44bcb631feb8bee5c [file] [log] [blame]
/*******************************************************************************
* Copyright (c) 2016 ALL4TEC & CEA LIST.
* All rights reserved. This program and the accompanying materials
* are made available under the terms of the Eclipse Public License 2.0
* which accompanies this distribution, and is available at
* https://www.eclipse.org/legal/epl-2.0/
*
* SPDX-License-Identifier: EPL-2.0
*
* Contributors:
* ALL4TEC & CEA LIST - initial API and implementation
******************************************************************************/
package org.polarsys.esf.esfsafetyconcepts.sdysfuctions;
/**
* <!-- begin-user-doc -->
* A representation of the model object '<em><b>SHazard</b></em>'.
* <!-- end-user-doc -->
*
* <p>
* The following features are supported:
* </p>
* <ul>
* <li>{@link org.polarsys.esf.esfsafetyconcepts.sdysfuctions.ISHazard#getBase_Class <em>Base Class</em>}</li>
* <li>{@link org.polarsys.esf.esfsafetyconcepts.sdysfuctions.ISHazard#getRisk <em>Risk</em>}</li>
* </ul>
*
* @see org.polarsys.esf.esfsafetyconcepts.sdysfuctions.ISDysfunctionsPackage#getSHazard()
* @model
* @generated
*/
public interface ISHazard
extends IAbstractSDysfunctionObject {
/**
* Returns the value of the '<em><b>Base Class</b></em>' reference.
* <!-- begin-user-doc -->
* <p>
* If the meaning of the '<em>Base Class</em>' reference isn't clear,
* there really should be more of a description here...
* </p>
* <!-- end-user-doc -->
*
* @return the value of the '<em>Base Class</em>' reference.
* @see #setBase_Class(org.eclipse.uml2.uml.Class)
* @see org.polarsys.esf.esfsafetyconcepts.sdysfuctions.ISDysfunctionsPackage#getSHazard_Base_Class()
* @model required="true" ordered="false"
* @generated
*/
org.eclipse.uml2.uml.Class getBase_Class();
/**
* Sets the value of the '{@link org.polarsys.esf.esfsafetyconcepts.sdysfuctions.ISHazard#getBase_Class <em>Base
* Class</em>}' reference.
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
*
* @param value the new value of the '<em>Base Class</em>' reference.
* @see #getBase_Class()
* @generated
*/
void setBase_Class(org.eclipse.uml2.uml.Class value);
/**
* Returns the value of the '<em><b>Risk</b></em>' reference.
* It is bidirectional and its opposite is '{@link org.polarsys.esf.esfsafetyconcepts.sdysfuctions.ISRisk#getHazard
* <em>Hazard</em>}'.
* <!-- begin-user-doc -->
* <p>
* If the meaning of the '<em>Risk</em>' reference isn't clear,
* there really should be more of a description here...
* </p>
* <!-- end-user-doc -->
*
* @return the value of the '<em>Risk</em>' reference.
* @see #setRisk(ISRisk)
* @see org.polarsys.esf.esfsafetyconcepts.sdysfuctions.ISDysfunctionsPackage#getSHazard_Risk()
* @see org.polarsys.esf.esfsafetyconcepts.sdysfuctions.ISRisk#getHazard
* @model opposite="hazard" ordered="false"
* @generated
*/
ISRisk getRisk();
/**
* Sets the value of the '{@link org.polarsys.esf.esfsafetyconcepts.sdysfuctions.ISHazard#getRisk <em>Risk</em>}'
* reference.
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
*
* @param value the new value of the '<em>Risk</em>' reference.
* @see #getRisk()
* @generated
*/
void setRisk(ISRisk value);
} // ISHazard