blob: 1b2b453cfbce8c98d1b7b85d3c53238fe81c0a30 [file] [log] [blame]
/**
*/
package org.hl7.fhir;
import javax.xml.datatype.XMLGregorianCalendar;
/**
* <!-- begin-user-doc -->
* A representation of the model object '<em><b>Instant</b></em>'.
* <!-- end-user-doc -->
*
* <!-- begin-model-doc -->
* An instant in time - known at least to the second
* Note: This is intended for precisely observed times, typically system logs etc., and not human-reported times - for them, see date and dateTime below. Time zone is always required
* If the element is present, it must have either a @value, an @id, or extensions
* <!-- end-model-doc -->
*
* <p>
* The following features are supported:
* </p>
* <ul>
* <li>{@link org.hl7.fhir.Instant#getValue <em>Value</em>}</li>
* </ul>
*
* @see org.hl7.fhir.FhirPackage#getInstant()
* @model extendedMetaData="name='instant' kind='elementOnly'"
* @generated
*/
public interface Instant 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(XMLGregorianCalendar)
* @see org.hl7.fhir.FhirPackage#getInstant_Value()
* @model dataType="org.hl7.fhir.InstantPrimitive"
* extendedMetaData="kind='attribute' name='value'"
* @generated
*/
XMLGregorianCalendar getValue();
/**
* Sets the value of the '{@link org.hl7.fhir.Instant#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(XMLGregorianCalendar value);
} // Instant