blob: 3e96fa4dee2af867cd76bbe7c9a0d1a6f2d2a3d2 [file] [log] [blame]
/*******************************************************************************
* Copyright (c) 2016 David Carlson and others.
* All rights reserved. This program and the accompanying materials
* are made available under the terms of the Eclipse Public License v1.0
* which accompanies this distribution, and is available at
* http://www.eclipse.org/legal/epl-v10.html
*
* Contributors:
* David Carlson (Clinical Cloud Solutions, LLC) - initial API and implementation
*******************************************************************************/
/**
*/
package org.eclipse.mdht.uml.fhir.core.resource;
import org.eclipse.mdht.uml.fhir.core.datatype.BackboneElement;
import org.eclipse.mdht.uml.fhir.core.datatype.CodeableConcept;
import org.eclipse.mdht.uml.fhir.core.datatype.Quantity;
/**
* <!-- begin-user-doc -->
* A representation of the model object '<em><b>Sequence Quality</b></em>'.
* <!-- end-user-doc -->
*
* <p>
* The following features are supported:
* </p>
* <ul>
* <li>{@link org.eclipse.mdht.uml.fhir.core.resource.SequenceQuality#getStart <em>Start</em>}</li>
* <li>{@link org.eclipse.mdht.uml.fhir.core.resource.SequenceQuality#getEnd <em>End</em>}</li>
* <li>{@link org.eclipse.mdht.uml.fhir.core.resource.SequenceQuality#getScore <em>Score</em>}</li>
* <li>{@link org.eclipse.mdht.uml.fhir.core.resource.SequenceQuality#getPlatform <em>Platform</em>}</li>
* </ul>
*
* @see org.eclipse.mdht.uml.fhir.core.resource.FhirResourcePackage#getSequenceQuality()
* @model annotation="http://www.eclipse.org/uml2/2.0.0/UML originalName='Sequence_Quality'"
* @generated
*/
public interface SequenceQuality extends BackboneElement {
/**
* Returns the value of the '<em><b>Start</b></em>' reference.
* <!-- begin-user-doc -->
* <p>
* If the meaning of the '<em>Start</em>' reference isn't clear,
* there really should be more of a description here...
* </p>
* <!-- end-user-doc -->
* @return the value of the '<em>Start</em>' reference.
* @see #setStart(org.eclipse.mdht.uml.fhir.core.datatype.Integer)
* @see org.eclipse.mdht.uml.fhir.core.resource.FhirResourcePackage#getSequenceQuality_Start()
* @model
* @generated
*/
org.eclipse.mdht.uml.fhir.core.datatype.Integer getStart();
/**
* Sets the value of the '{@link org.eclipse.mdht.uml.fhir.core.resource.SequenceQuality#getStart <em>Start</em>}' reference.
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
* @param value the new value of the '<em>Start</em>' reference.
* @see #getStart()
* @generated
*/
void setStart(org.eclipse.mdht.uml.fhir.core.datatype.Integer value);
/**
* Returns the value of the '<em><b>End</b></em>' reference.
* <!-- begin-user-doc -->
* <p>
* If the meaning of the '<em>End</em>' reference isn't clear,
* there really should be more of a description here...
* </p>
* <!-- end-user-doc -->
* @return the value of the '<em>End</em>' reference.
* @see #setEnd(org.eclipse.mdht.uml.fhir.core.datatype.Integer)
* @see org.eclipse.mdht.uml.fhir.core.resource.FhirResourcePackage#getSequenceQuality_End()
* @model
* @generated
*/
org.eclipse.mdht.uml.fhir.core.datatype.Integer getEnd();
/**
* Sets the value of the '{@link org.eclipse.mdht.uml.fhir.core.resource.SequenceQuality#getEnd <em>End</em>}' reference.
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
* @param value the new value of the '<em>End</em>' reference.
* @see #getEnd()
* @generated
*/
void setEnd(org.eclipse.mdht.uml.fhir.core.datatype.Integer value);
/**
* Returns the value of the '<em><b>Score</b></em>' reference.
* <!-- begin-user-doc -->
* <p>
* If the meaning of the '<em>Score</em>' reference isn't clear,
* there really should be more of a description here...
* </p>
* <!-- end-user-doc -->
* @return the value of the '<em>Score</em>' reference.
* @see #setScore(Quantity)
* @see org.eclipse.mdht.uml.fhir.core.resource.FhirResourcePackage#getSequenceQuality_Score()
* @model
* @generated
*/
Quantity getScore();
/**
* Sets the value of the '{@link org.eclipse.mdht.uml.fhir.core.resource.SequenceQuality#getScore <em>Score</em>}' reference.
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
* @param value the new value of the '<em>Score</em>' reference.
* @see #getScore()
* @generated
*/
void setScore(Quantity value);
/**
* Returns the value of the '<em><b>Platform</b></em>' reference.
* <!-- begin-user-doc -->
* <p>
* If the meaning of the '<em>Platform</em>' reference isn't clear,
* there really should be more of a description here...
* </p>
* <!-- end-user-doc -->
* @return the value of the '<em>Platform</em>' reference.
* @see #setPlatform(CodeableConcept)
* @see org.eclipse.mdht.uml.fhir.core.resource.FhirResourcePackage#getSequenceQuality_Platform()
* @model
* @generated
*/
CodeableConcept getPlatform();
/**
* Sets the value of the '{@link org.eclipse.mdht.uml.fhir.core.resource.SequenceQuality#getPlatform <em>Platform</em>}' reference.
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
* @param value the new value of the '<em>Platform</em>' reference.
* @see #getPlatform()
* @generated
*/
void setPlatform(CodeableConcept value);
} // SequenceQuality