blob: 75492bb2592a6dbf0de86e9e2683a1b41c4991cd [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.emf.common.util.EList;
import org.eclipse.mdht.uml.fhir.core.datatype.BackboneElement;
import org.eclipse.mdht.uml.fhir.core.datatype.DataType;
/**
* <!-- begin-user-doc -->
* A representation of the model object '<em><b>Parameters Parameter</b></em>'.
* <!-- end-user-doc -->
*
* <p>
* The following features are supported:
* </p>
* <ul>
* <li>{@link org.eclipse.mdht.uml.fhir.core.resource.ParametersParameter#getName <em>Name</em>}</li>
* <li>{@link org.eclipse.mdht.uml.fhir.core.resource.ParametersParameter#getValuex <em>Valuex</em>}</li>
* <li>{@link org.eclipse.mdht.uml.fhir.core.resource.ParametersParameter#getResource <em>Resource</em>}</li>
* <li>{@link org.eclipse.mdht.uml.fhir.core.resource.ParametersParameter#getParts <em>Part</em>}</li>
* </ul>
*
* @see org.eclipse.mdht.uml.fhir.core.resource.FhirResourcePackage#getParametersParameter()
* @model annotation="http://www.eclipse.org/uml2/2.0.0/UML originalName='Parameters_Parameter'"
* @generated
*/
public interface ParametersParameter extends BackboneElement {
/**
* Returns the value of the '<em><b>Name</b></em>' reference.
* <!-- begin-user-doc -->
* <p>
* If the meaning of the '<em>Name</em>' reference isn't clear,
* there really should be more of a description here...
* </p>
* <!-- end-user-doc -->
* @return the value of the '<em>Name</em>' reference.
* @see #setName(org.eclipse.mdht.uml.fhir.core.datatype.String)
* @see org.eclipse.mdht.uml.fhir.core.resource.FhirResourcePackage#getParametersParameter_Name()
* @model required="true"
* @generated
*/
org.eclipse.mdht.uml.fhir.core.datatype.String getName();
/**
* Sets the value of the '{@link org.eclipse.mdht.uml.fhir.core.resource.ParametersParameter#getName <em>Name</em>}' reference.
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
* @param value the new value of the '<em>Name</em>' reference.
* @see #getName()
* @generated
*/
void setName(org.eclipse.mdht.uml.fhir.core.datatype.String value);
/**
* Returns the value of the '<em><b>Valuex</b></em>' reference.
* <!-- begin-user-doc -->
* <p>
* If the meaning of the '<em>Valuex</em>' reference isn't clear,
* there really should be more of a description here...
* </p>
* <!-- end-user-doc -->
* @return the value of the '<em>Valuex</em>' reference.
* @see #setValuex(DataType)
* @see org.eclipse.mdht.uml.fhir.core.resource.FhirResourcePackage#getParametersParameter_Valuex()
* @model annotation="http://www.eclipse.org/uml2/2.0.0/UML originalName='value[x]'"
* @generated
*/
DataType getValuex();
/**
* Sets the value of the '{@link org.eclipse.mdht.uml.fhir.core.resource.ParametersParameter#getValuex <em>Valuex</em>}' reference.
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
* @param value the new value of the '<em>Valuex</em>' reference.
* @see #getValuex()
* @generated
*/
void setValuex(DataType value);
/**
* Returns the value of the '<em><b>Resource</b></em>' reference.
* <!-- begin-user-doc -->
* <p>
* If the meaning of the '<em>Resource</em>' reference isn't clear,
* there really should be more of a description here...
* </p>
* <!-- end-user-doc -->
* @return the value of the '<em>Resource</em>' reference.
* @see #setResource(Resource)
* @see org.eclipse.mdht.uml.fhir.core.resource.FhirResourcePackage#getParametersParameter_Resource()
* @model
* @generated
*/
Resource getResource();
/**
* Sets the value of the '{@link org.eclipse.mdht.uml.fhir.core.resource.ParametersParameter#getResource <em>Resource</em>}' reference.
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
* @param value the new value of the '<em>Resource</em>' reference.
* @see #getResource()
* @generated
*/
void setResource(Resource value);
/**
* Returns the value of the '<em><b>Part</b></em>' containment reference list.
* The list contents are of type {@link org.eclipse.mdht.uml.fhir.core.resource.ParametersParameter}.
* <!-- begin-user-doc -->
* <p>
* If the meaning of the '<em>Part</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>Part</em>' containment reference list.
* @see org.eclipse.mdht.uml.fhir.core.resource.FhirResourcePackage#getParametersParameter_Part()
* @model containment="true"
* @generated
*/
EList<ParametersParameter> getParts();
} // ParametersParameter