org.openhealthtools.mdht.uml.cda.RegionOfInterestValue Maven / Gradle / Ivy
/*******************************************************************************
* Copyright (c) 2009, 2011 IBM Corporation 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:
* IBM Corporation - initial API and implementation
*******************************************************************************/
package org.openhealthtools.mdht.uml.cda;
import org.openhealthtools.mdht.uml.hl7.datatypes.INT;
/**
*
* A representation of the model object 'Region Of Interest Value'.
*
*
*
* The following features are supported:
*
* - {@link org.openhealthtools.mdht.uml.cda.RegionOfInterestValue#isUnsorted Unsorted}
*
*
*
* @see org.openhealthtools.mdht.uml.cda.CDAPackage#getRegionOfInterestValue()
* @model
* @generated
*/
public interface RegionOfInterestValue extends INT {
/**
* Returns the value of the 'Unsorted' attribute.
* The default value is "false"
.
*
*
* If the meaning of the 'Unsorted' attribute isn't clear,
* there really should be more of a description here...
*
*
* @return the value of the 'Unsorted' attribute.
* @see #setUnsorted(boolean)
* @see org.openhealthtools.mdht.uml.cda.CDAPackage#getRegionOfInterestValue_Unsorted()
* @model default="false" required="true" ordered="false"
* @generated
*/
boolean isUnsorted();
/**
* Sets the value of the '{@link org.openhealthtools.mdht.uml.cda.RegionOfInterestValue#isUnsorted Unsorted}' attribute.
*
*
* @param value the new value of the 'Unsorted' attribute.
* @see #isUnsorted()
* @generated
*/
void setUnsorted(boolean value);
} // RegionOfInterestValue