blob: dfee7110213d15b6320782d56ef4f4d2dfac6edc [file] [log] [blame]
/*******************************************************************************
* Copyright (c) 2016 Fundación Tecnalia Research & Innovation.
*
* All rights reserved. This program and the accompanying materials
* are made available under the terms of the Eclipse Public License v2.0
* which accompanies this distribution, and is available at
* https://www.eclipse.org/org/documents/epl-2.0/EPL-2.0.html
*
* SPDX-License-Identifier: EPL-2.0
*
* Contributors:
* Huascar Espinoza - initial API and implementation
* Alejandra Ruíz - initial API and implementation
* Idoya Del Río - initial API and implementation
* Mari Carmen Palacios - initial API and implementation
* Angel López - initial API and implementation
*******************************************************************************/
/**
*/
package org.eclipse.opencert.pkm.refframework.refframework;
import org.eclipse.emf.common.util.EList;
import org.eclipse.opencert.infra.general.general.NamedElement;
/**
* <!-- begin-user-doc -->
* A representation of the model object '<em><b>Ref Applicability</b></em>'.
* <!-- end-user-doc -->
*
* <p>
* The following features are supported:
* <ul>
* <li>{@link org.eclipse.opencert.pkm.refframework.refframework.RefApplicability#getApplicCritic <em>Applic Critic</em>}</li>
* <li>{@link org.eclipse.opencert.pkm.refframework.refframework.RefApplicability#getComments <em>Comments</em>}</li>
* <li>{@link org.eclipse.opencert.pkm.refframework.refframework.RefApplicability#getApplicTarget <em>Applic Target</em>}</li>
* <li>{@link org.eclipse.opencert.pkm.refframework.refframework.RefApplicability#getOwnedRel <em>Owned Rel</em>}</li>
* </ul>
* </p>
*
* @see org.eclipse.opencert.pkm.refframework.refframework.RefframeworkPackage#getRefApplicability()
* @model
* @generated
*/
public interface RefApplicability extends NamedElement {
/**
* Returns the value of the '<em><b>Applic Critic</b></em>' containment reference list.
* The list contents are of type {@link org.eclipse.opencert.pkm.refframework.refframework.RefCriticalityApplicability}.
* <!-- begin-user-doc -->
* <p>
* If the meaning of the '<em>Applic Critic</em>' containment reference list isn't clear,
* there really should be more of a description here...
* </p>
* <!-- end-user-doc -->
* @return the value of the '<em>Applic Critic</em>' containment reference list.
* @see org.eclipse.opencert.pkm.refframework.refframework.RefframeworkPackage#getRefApplicability_ApplicCritic()
* @model containment="true"
* @generated
*/
EList<RefCriticalityApplicability> getApplicCritic();
/**
* Returns the value of the '<em><b>Comments</b></em>' attribute.
* <!-- begin-user-doc -->
* <p>
* If the meaning of the '<em>Comments</em>' attribute isn't clear,
* there really should be more of a description here...
* </p>
* <!-- end-user-doc -->
* @return the value of the '<em>Comments</em>' attribute.
* @see #setComments(String)
* @see org.eclipse.opencert.pkm.refframework.refframework.RefframeworkPackage#getRefApplicability_Comments()
* @model
* @generated
*/
String getComments();
/**
* Sets the value of the '{@link org.eclipse.opencert.pkm.refframework.refframework.RefApplicability#getComments <em>Comments</em>}' attribute.
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
* @param value the new value of the '<em>Comments</em>' attribute.
* @see #getComments()
* @generated
*/
void setComments(String value);
/**
* Returns the value of the '<em><b>Applic Target</b></em>' reference.
* <!-- begin-user-doc -->
* <p>
* If the meaning of the '<em>Applic Target</em>' reference isn't clear,
* there really should be more of a description here...
* </p>
* <!-- end-user-doc -->
* @return the value of the '<em>Applic Target</em>' reference.
* @see #setApplicTarget(RefAssurableElement)
* @see org.eclipse.opencert.pkm.refframework.refframework.RefframeworkPackage#getRefApplicability_ApplicTarget()
* @model
* @generated
*/
RefAssurableElement getApplicTarget();
/**
* Sets the value of the '{@link org.eclipse.opencert.pkm.refframework.refframework.RefApplicability#getApplicTarget <em>Applic Target</em>}' reference.
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
* @param value the new value of the '<em>Applic Target</em>' reference.
* @see #getApplicTarget()
* @generated
*/
void setApplicTarget(RefAssurableElement value);
/**
* Returns the value of the '<em><b>Owned Rel</b></em>' containment reference list.
* The list contents are of type {@link org.eclipse.opencert.pkm.refframework.refframework.RefApplicabilityRel}.
* <!-- begin-user-doc -->
* <p>
* If the meaning of the '<em>Owned Rel</em>' containment reference list isn't clear,
* there really should be more of a description here...
* </p>
* <!-- end-user-doc -->
* @return the value of the '<em>Owned Rel</em>' containment reference list.
* @see org.eclipse.opencert.pkm.refframework.refframework.RefframeworkPackage#getRefApplicability_OwnedRel()
* @model containment="true"
* @generated
*/
EList<RefApplicabilityRel> getOwnedRel();
} // RefApplicability