blob: 4869cfc6c4142a3bbd4850b73cce9f9eb858e92c [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;
/**
* <!-- begin-user-doc -->
* A representation of the model object '<em><b>Test Script Test</b></em>'.
* <!-- end-user-doc -->
*
* <p>
* The following features are supported:
* </p>
* <ul>
* <li>{@link org.eclipse.mdht.uml.fhir.core.resource.TestScriptTest#getName <em>Name</em>}</li>
* <li>{@link org.eclipse.mdht.uml.fhir.core.resource.TestScriptTest#getDescription <em>Description</em>}</li>
* <li>{@link org.eclipse.mdht.uml.fhir.core.resource.TestScriptTest#getMetadata <em>Metadata</em>}</li>
* <li>{@link org.eclipse.mdht.uml.fhir.core.resource.TestScriptTest#getActions <em>Action</em>}</li>
* </ul>
*
* @see org.eclipse.mdht.uml.fhir.core.resource.FhirResourcePackage#getTestScriptTest()
* @model annotation="http://www.eclipse.org/uml2/2.0.0/UML originalName='TestScript_Test'"
* @generated
*/
public interface TestScriptTest 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#getTestScriptTest_Name()
* @model
* @generated
*/
org.eclipse.mdht.uml.fhir.core.datatype.String getName();
/**
* Sets the value of the '{@link org.eclipse.mdht.uml.fhir.core.resource.TestScriptTest#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>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.resource.FhirResourcePackage#getTestScriptTest_Description()
* @model
* @generated
*/
org.eclipse.mdht.uml.fhir.core.datatype.String getDescription();
/**
* Sets the value of the '{@link org.eclipse.mdht.uml.fhir.core.resource.TestScriptTest#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>Metadata</b></em>' containment reference.
* <!-- begin-user-doc -->
* <p>
* If the meaning of the '<em>Metadata</em>' containment reference isn't clear,
* there really should be more of a description here...
* </p>
* <!-- end-user-doc -->
* @return the value of the '<em>Metadata</em>' containment reference.
* @see #setMetadata(TestScriptMetadata)
* @see org.eclipse.mdht.uml.fhir.core.resource.FhirResourcePackage#getTestScriptTest_Metadata()
* @model containment="true"
* @generated
*/
TestScriptMetadata getMetadata();
/**
* Sets the value of the '{@link org.eclipse.mdht.uml.fhir.core.resource.TestScriptTest#getMetadata <em>Metadata</em>}' containment reference.
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
* @param value the new value of the '<em>Metadata</em>' containment reference.
* @see #getMetadata()
* @generated
*/
void setMetadata(TestScriptMetadata value);
/**
* Returns the value of the '<em><b>Action</b></em>' containment reference list.
* The list contents are of type {@link org.eclipse.mdht.uml.fhir.core.resource.TestScriptTestTestAction}.
* <!-- begin-user-doc -->
* <p>
* If the meaning of the '<em>Action</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>Action</em>' containment reference list.
* @see org.eclipse.mdht.uml.fhir.core.resource.FhirResourcePackage#getTestScriptTest_Action()
* @model containment="true" required="true"
* @generated
*/
EList<TestScriptTestTestAction> getActions();
} // TestScriptTest