blob: 2b23c96365c0bbcd55ac0ce88136e56183edea81 [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.cdo.CDOObject;
import org.eclipse.opencert.infra.general.general.RequirementRelKind;
/**
* <!-- begin-user-doc -->
* A representation of the model object '<em><b>Ref Requirement Rel</b></em>'.
* <!-- end-user-doc -->
*
* <p>
* The following features are supported:
* <ul>
* <li>{@link org.eclipse.opencert.pkm.refframework.refframework.RefRequirementRel#getTarget <em>Target</em>}</li>
* <li>{@link org.eclipse.opencert.pkm.refframework.refframework.RefRequirementRel#getSource <em>Source</em>}</li>
* <li>{@link org.eclipse.opencert.pkm.refframework.refframework.RefRequirementRel#getType <em>Type</em>}</li>
* </ul>
* </p>
*
* @see org.eclipse.opencert.pkm.refframework.refframework.RefframeworkPackage#getRefRequirementRel()
* @model
* @extends CDOObject
* @generated
*/
public interface RefRequirementRel extends CDOObject {
/**
* Returns the value of the '<em><b>Target</b></em>' reference.
* <!-- begin-user-doc -->
* <p>
* If the meaning of the '<em>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>Target</em>' reference.
* @see #setTarget(RefRequirement)
* @see org.eclipse.opencert.pkm.refframework.refframework.RefframeworkPackage#getRefRequirementRel_Target()
* @model required="true"
* @generated
*/
RefRequirement getTarget();
/**
* Sets the value of the '{@link org.eclipse.opencert.pkm.refframework.refframework.RefRequirementRel#getTarget <em>Target</em>}' reference.
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
* @param value the new value of the '<em>Target</em>' reference.
* @see #getTarget()
* @generated
*/
void setTarget(RefRequirement value);
/**
* Returns the value of the '<em><b>Source</b></em>' reference.
* <!-- begin-user-doc -->
* <p>
* If the meaning of the '<em>Source</em>' reference isn't clear,
* there really should be more of a description here...
* </p>
* <!-- end-user-doc -->
* @return the value of the '<em>Source</em>' reference.
* @see #setSource(RefRequirement)
* @see org.eclipse.opencert.pkm.refframework.refframework.RefframeworkPackage#getRefRequirementRel_Source()
* @model required="true"
* @generated
*/
RefRequirement getSource();
/**
* Sets the value of the '{@link org.eclipse.opencert.pkm.refframework.refframework.RefRequirementRel#getSource <em>Source</em>}' reference.
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
* @param value the new value of the '<em>Source</em>' reference.
* @see #getSource()
* @generated
*/
void setSource(RefRequirement value);
/**
* Returns the value of the '<em><b>Type</b></em>' attribute.
* The literals are from the enumeration {@link org.eclipse.opencert.infra.general.general.RequirementRelKind}.
* <!-- begin-user-doc -->
* <p>
* If the meaning of the '<em>Type</em>' attribute isn't clear,
* there really should be more of a description here...
* </p>
* <!-- end-user-doc -->
* @return the value of the '<em>Type</em>' attribute.
* @see org.eclipse.opencert.infra.general.general.RequirementRelKind
* @see #setType(RequirementRelKind)
* @see org.eclipse.opencert.pkm.refframework.refframework.RefframeworkPackage#getRefRequirementRel_Type()
* @model
* @generated
*/
RequirementRelKind getType();
/**
* Sets the value of the '{@link org.eclipse.opencert.pkm.refframework.refframework.RefRequirementRel#getType <em>Type</em>}' attribute.
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
* @param value the new value of the '<em>Type</em>' attribute.
* @see org.eclipse.opencert.infra.general.general.RequirementRelKind
* @see #getType()
* @generated
*/
void setType(RequirementRelKind value);
} // RefRequirementRel