blob: 4d30d761ed0bd7735ea895a650b3f30620e18aeb [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.aml.terminology;
import org.eclipse.emf.ecore.EObject;
import org.eclipse.uml2.uml.Enumeration;
/**
* <!-- begin-user-doc -->
* A representation of the model object '<em><b>Scoped Identifier</b></em>'.
* <!-- end-user-doc -->
*
* <p>
* The following features are supported:
* </p>
* <ul>
* <li>{@link org.eclipse.mdht.uml.aml.terminology.ScopedIdentifier#getUri <em>Uri</em>}</li>
* <li>{@link org.eclipse.mdht.uml.aml.terminology.ScopedIdentifier#getIdentifierURIPattern <em>Identifier URI Pattern</em>}</li>
* <li>{@link org.eclipse.mdht.uml.aml.terminology.ScopedIdentifier#getBase_Enumeration <em>Base Enumeration</em>}</li>
* </ul>
*
* @see org.eclipse.mdht.uml.aml.terminology.TerminologyPackage#getScopedIdentifier()
* @model
* @generated
*/
public interface ScopedIdentifier extends EObject {
/**
* Returns the value of the '<em><b>Uri</b></em>' attribute.
* <!-- begin-user-doc -->
* <p>
* If the meaning of the '<em>Uri</em>' attribute isn't clear,
* there really should be more of a description here...
* </p>
* <!-- end-user-doc -->
* @return the value of the '<em>Uri</em>' attribute.
* @see #setUri(String)
* @see org.eclipse.mdht.uml.aml.terminology.TerminologyPackage#getScopedIdentifier_Uri()
* @model dataType="org.eclipse.uml2.types.String" ordered="false"
* @generated
*/
String getUri();
/**
* Sets the value of the '{@link org.eclipse.mdht.uml.aml.terminology.ScopedIdentifier#getUri <em>Uri</em>}' attribute.
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
* @param value the new value of the '<em>Uri</em>' attribute.
* @see #getUri()
* @generated
*/
void setUri(String value);
/**
* Returns the value of the '<em><b>Identifier URI Pattern</b></em>' attribute.
* <!-- begin-user-doc -->
* <p>
* If the meaning of the '<em>Identifier URI Pattern</em>' attribute isn't clear,
* there really should be more of a description here...
* </p>
* <!-- end-user-doc -->
* @return the value of the '<em>Identifier URI Pattern</em>' attribute.
* @see #setIdentifierURIPattern(String)
* @see org.eclipse.mdht.uml.aml.terminology.TerminologyPackage#getScopedIdentifier_IdentifierURIPattern()
* @model dataType="org.eclipse.uml2.types.String" ordered="false"
* @generated
*/
String getIdentifierURIPattern();
/**
* Sets the value of the '{@link org.eclipse.mdht.uml.aml.terminology.ScopedIdentifier#getIdentifierURIPattern <em>Identifier URI Pattern</em>}' attribute.
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
* @param value the new value of the '<em>Identifier URI Pattern</em>' attribute.
* @see #getIdentifierURIPattern()
* @generated
*/
void setIdentifierURIPattern(String value);
/**
* Returns the value of the '<em><b>Base Enumeration</b></em>' reference.
* <!-- begin-user-doc -->
* <p>
* If the meaning of the '<em>Base Enumeration</em>' reference isn't clear,
* there really should be more of a description here...
* </p>
* <!-- end-user-doc -->
* @return the value of the '<em>Base Enumeration</em>' reference.
* @see #setBase_Enumeration(Enumeration)
* @see org.eclipse.mdht.uml.aml.terminology.TerminologyPackage#getScopedIdentifier_Base_Enumeration()
* @model required="true" ordered="false"
* @generated
*/
Enumeration getBase_Enumeration();
/**
* Sets the value of the '{@link org.eclipse.mdht.uml.aml.terminology.ScopedIdentifier#getBase_Enumeration <em>Base Enumeration</em>}' reference.
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
* @param value the new value of the '<em>Base Enumeration</em>' reference.
* @see #getBase_Enumeration()
* @generated
*/
void setBase_Enumeration(Enumeration value);
} // ScopedIdentifier