blob: 3c2ec2acaf7a857f427d015885320c1f944c8e81 [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;
/**
* <!-- begin-user-doc -->
* A representation of the model object '<em><b>Decision Support Rule Action Customization</b></em>'.
* <!-- end-user-doc -->
*
* <p>
* The following features are supported:
* </p>
* <ul>
* <li>{@link org.eclipse.mdht.uml.fhir.core.resource.DecisionSupportRuleActionCustomization#getPath <em>Path</em>}</li>
* <li>{@link org.eclipse.mdht.uml.fhir.core.resource.DecisionSupportRuleActionCustomization#getExpression <em>Expression</em>}</li>
* </ul>
*
* @see org.eclipse.mdht.uml.fhir.core.resource.FhirResourcePackage#getDecisionSupportRuleActionCustomization()
* @model annotation="http://www.eclipse.org/uml2/2.0.0/UML originalName='Action_Customization'"
* @generated
*/
public interface DecisionSupportRuleActionCustomization extends BackboneElement {
/**
* Returns the value of the '<em><b>Path</b></em>' reference.
* <!-- begin-user-doc -->
* <p>
* If the meaning of the '<em>Path</em>' reference isn't clear,
* there really should be more of a description here...
* </p>
* <!-- end-user-doc -->
* @return the value of the '<em>Path</em>' reference.
* @see #setPath(org.eclipse.mdht.uml.fhir.core.datatype.String)
* @see org.eclipse.mdht.uml.fhir.core.resource.FhirResourcePackage#getDecisionSupportRuleActionCustomization_Path()
* @model required="true"
* @generated
*/
org.eclipse.mdht.uml.fhir.core.datatype.String getPath();
/**
* Sets the value of the '{@link org.eclipse.mdht.uml.fhir.core.resource.DecisionSupportRuleActionCustomization#getPath <em>Path</em>}' reference.
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
* @param value the new value of the '<em>Path</em>' reference.
* @see #getPath()
* @generated
*/
void setPath(org.eclipse.mdht.uml.fhir.core.datatype.String value);
/**
* Returns the value of the '<em><b>Expression</b></em>' reference.
* <!-- begin-user-doc -->
* <p>
* If the meaning of the '<em>Expression</em>' reference isn't clear,
* there really should be more of a description here...
* </p>
* <!-- end-user-doc -->
* @return the value of the '<em>Expression</em>' reference.
* @see #setExpression(org.eclipse.mdht.uml.fhir.core.datatype.String)
* @see org.eclipse.mdht.uml.fhir.core.resource.FhirResourcePackage#getDecisionSupportRuleActionCustomization_Expression()
* @model required="true"
* @generated
*/
org.eclipse.mdht.uml.fhir.core.datatype.String getExpression();
/**
* Sets the value of the '{@link org.eclipse.mdht.uml.fhir.core.resource.DecisionSupportRuleActionCustomization#getExpression <em>Expression</em>}' reference.
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
* @param value the new value of the '<em>Expression</em>' reference.
* @see #getExpression()
* @generated
*/
void setExpression(org.eclipse.mdht.uml.fhir.core.datatype.String value);
} // DecisionSupportRuleActionCustomization