blob: 9e3c6d3020a68aac09f8ce42a0e1a68f8c71927e [file] [log] [blame]
/**
*/
package org.hl7.fhir;
import java.lang.String;
/**
* <!-- begin-user-doc -->
* A representation of the model object '<em><b>Id</b></em>'.
* <!-- end-user-doc -->
*
* <!-- begin-model-doc -->
* Any combination of letters, numerals, "-" and ".", with a length limit of 64 characters. (This might be an integer, an unprefixed OID, UUID or any other identifier pattern that meets these constraints.) Ids are case-insensitive.
* RFC 4122
* If the element is present, it must have either a @value, an @id referenced from the Narrative, or extensions
* <!-- end-model-doc -->
*
* <p>
* The following features are supported:
* </p>
* <ul>
* <li>{@link org.hl7.fhir.Id#getValue <em>Value</em>}</li>
* </ul>
*
* @see org.hl7.fhir.FhirPackage#getId()
* @model extendedMetaData="name='id' kind='elementOnly'"
* @generated
*/
public interface Id extends Element {
/**
* Returns the value of the '<em><b>Value</b></em>' attribute.
* <!-- begin-user-doc -->
* <p>
* If the meaning of the '<em>Value</em>' attribute isn't clear,
* there really should be more of a description here...
* </p>
* <!-- end-user-doc -->
* @return the value of the '<em>Value</em>' attribute.
* @see #setValue(String)
* @see org.hl7.fhir.FhirPackage#getId_Value()
* @model dataType="org.hl7.fhir.IdPrimitive"
* extendedMetaData="kind='attribute' name='value'"
* @generated
*/
String getValue();
/**
* Sets the value of the '{@link org.hl7.fhir.Id#getValue <em>Value</em>}' attribute.
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
* @param value the new value of the '<em>Value</em>' attribute.
* @see #getValue()
* @generated
*/
void setValue(String value);
} // Id