blob: 497527dfaa4b0ae96a86fd39535d38ffcb5e398b [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.apm.baseline.baseline;
import org.eclipse.emf.cdo.CDOObject;
import org.eclipse.opencert.infra.general.general.ApplicabilityKind;
/**
* <!-- begin-user-doc -->
* A representation of the model object '<em><b>Base Applicability Rel</b></em>'.
* <!-- end-user-doc -->
*
* <p>
* The following features are supported:
* <ul>
* <li>{@link org.eclipse.opencert.apm.baseline.baseline.BaseApplicabilityRel#getType <em>Type</em>}</li>
* <li>{@link org.eclipse.opencert.apm.baseline.baseline.BaseApplicabilityRel#getSource <em>Source</em>}</li>
* <li>{@link org.eclipse.opencert.apm.baseline.baseline.BaseApplicabilityRel#getTarget <em>Target</em>}</li>
* </ul>
* </p>
*
* @see org.eclipse.opencert.apm.baseline.baseline.BaselinePackage#getBaseApplicabilityRel()
* @model
* @extends CDOObject
* @generated
*/
public interface BaseApplicabilityRel extends CDOObject {
/**
* Returns the value of the '<em><b>Type</b></em>' attribute.
* The literals are from the enumeration {@link org.eclipse.opencert.infra.general.general.ApplicabilityKind}.
* <!-- 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.ApplicabilityKind
* @see #setType(ApplicabilityKind)
* @see org.eclipse.opencert.apm.baseline.baseline.BaselinePackage#getBaseApplicabilityRel_Type()
* @model
* @generated
*/
ApplicabilityKind getType();
/**
* Sets the value of the '{@link org.eclipse.opencert.apm.baseline.baseline.BaseApplicabilityRel#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.ApplicabilityKind
* @see #getType()
* @generated
*/
void setType(ApplicabilityKind 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(BaseApplicability)
* @see org.eclipse.opencert.apm.baseline.baseline.BaselinePackage#getBaseApplicabilityRel_Source()
* @model required="true"
* @generated
*/
BaseApplicability getSource();
/**
* Sets the value of the '{@link org.eclipse.opencert.apm.baseline.baseline.BaseApplicabilityRel#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(BaseApplicability value);
/**
* 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(BaseApplicability)
* @see org.eclipse.opencert.apm.baseline.baseline.BaselinePackage#getBaseApplicabilityRel_Target()
* @model required="true"
* @generated
*/
BaseApplicability getTarget();
/**
* Sets the value of the '{@link org.eclipse.opencert.apm.baseline.baseline.BaseApplicabilityRel#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(BaseApplicability value);
} // BaseApplicabilityRel