blob: 27999560d9666a9da3a3600fb9936c92e147df87 [file] [log] [blame]
/*******************************************************************************
* Copyright (c) 2015 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.datatype;
import org.eclipse.emf.common.util.EList;
/**
* <!-- begin-user-doc -->
* A representation of the model object '<em><b>Element Definition Slicing</b></em>'.
* <!-- end-user-doc -->
*
* <p>
* The following features are supported:
* </p>
* <ul>
* <li>{@link org.eclipse.mdht.uml.fhir.core.datatype.ElementDefinitionSlicing#getDiscriminators <em>Discriminator</em>}</li>
* <li>{@link org.eclipse.mdht.uml.fhir.core.datatype.ElementDefinitionSlicing#getDescription <em>Description</em>}</li>
* <li>{@link org.eclipse.mdht.uml.fhir.core.datatype.ElementDefinitionSlicing#getOrdered <em>Ordered</em>}</li>
* <li>{@link org.eclipse.mdht.uml.fhir.core.datatype.ElementDefinitionSlicing#getRules <em>Rules</em>}</li>
* </ul>
*
* @see org.eclipse.mdht.uml.fhir.core.datatype.FhirDatatypePackage#getElementDefinitionSlicing()
* @model annotation="http://www.eclipse.org/uml2/2.0.0/UML originalName='ElementDefinition_Slicing'"
* @generated
*/
public interface ElementDefinitionSlicing extends BackboneElement {
/**
* Returns the value of the '<em><b>Discriminator</b></em>' reference list.
* The list contents are of type {@link org.eclipse.mdht.uml.fhir.core.datatype.String}.
* <!-- begin-user-doc -->
* <p>
* If the meaning of the '<em>Discriminator</em>' reference list isn't clear,
* there really should be more of a description here...
* </p>
* <!-- end-user-doc -->
* @return the value of the '<em>Discriminator</em>' reference list.
* @see org.eclipse.mdht.uml.fhir.core.datatype.FhirDatatypePackage#getElementDefinitionSlicing_Discriminator()
* @model
* @generated
*/
EList<org.eclipse.mdht.uml.fhir.core.datatype.String> getDiscriminators();
/**
* Returns the value of the '<em><b>Description</b></em>' reference.
* <!-- begin-user-doc -->
* <p>
* If the meaning of the '<em>Description</em>' reference isn't clear,
* there really should be more of a description here...
* </p>
* <!-- end-user-doc -->
* @return the value of the '<em>Description</em>' reference.
* @see #setDescription(org.eclipse.mdht.uml.fhir.core.datatype.String)
* @see org.eclipse.mdht.uml.fhir.core.datatype.FhirDatatypePackage#getElementDefinitionSlicing_Description()
* @model
* @generated
*/
org.eclipse.mdht.uml.fhir.core.datatype.String getDescription();
/**
* Sets the value of the '{@link org.eclipse.mdht.uml.fhir.core.datatype.ElementDefinitionSlicing#getDescription <em>Description</em>}' reference.
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
* @param value the new value of the '<em>Description</em>' reference.
* @see #getDescription()
* @generated
*/
void setDescription(org.eclipse.mdht.uml.fhir.core.datatype.String value);
/**
* Returns the value of the '<em><b>Ordered</b></em>' reference.
* <!-- begin-user-doc -->
* <p>
* If the meaning of the '<em>Ordered</em>' reference isn't clear,
* there really should be more of a description here...
* </p>
* <!-- end-user-doc -->
* @return the value of the '<em>Ordered</em>' reference.
* @see #setOrdered(org.eclipse.mdht.uml.fhir.core.datatype.Boolean)
* @see org.eclipse.mdht.uml.fhir.core.datatype.FhirDatatypePackage#getElementDefinitionSlicing_Ordered()
* @model
* @generated
*/
org.eclipse.mdht.uml.fhir.core.datatype.Boolean getOrdered();
/**
* Sets the value of the '{@link org.eclipse.mdht.uml.fhir.core.datatype.ElementDefinitionSlicing#getOrdered <em>Ordered</em>}' reference.
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
* @param value the new value of the '<em>Ordered</em>' reference.
* @see #getOrdered()
* @generated
*/
void setOrdered(org.eclipse.mdht.uml.fhir.core.datatype.Boolean value);
/**
* Returns the value of the '<em><b>Rules</b></em>' reference.
* <!-- begin-user-doc -->
* <p>
* If the meaning of the '<em>Rules</em>' reference isn't clear,
* there really should be more of a description here...
* </p>
* <!-- end-user-doc -->
* @return the value of the '<em>Rules</em>' reference.
* @see #setRules(Code)
* @see org.eclipse.mdht.uml.fhir.core.datatype.FhirDatatypePackage#getElementDefinitionSlicing_Rules()
* @model required="true"
* @generated
*/
Code getRules();
/**
* Sets the value of the '{@link org.eclipse.mdht.uml.fhir.core.datatype.ElementDefinitionSlicing#getRules <em>Rules</em>}' reference.
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
* @param value the new value of the '<em>Rules</em>' reference.
* @see #getRules()
* @generated
*/
void setRules(Code value);
} // ElementDefinitionSlicing