All Downloads are FREE. Search and download functionalities are using the official Maven repository.
Please wait. This can take some minutes ...
Many resources are needed to download a project. Please understand that we have to compensate our server costs. Thank you in advance.
Project price only 1 $
You can buy this project and download/modify it how often you want.
org.openhealthtools.mdht.uml.cda.operations.RegionOfInterestOperations 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.operations;
import java.util.Map;
import org.eclipse.emf.common.util.BasicDiagnostic;
import org.eclipse.emf.common.util.Diagnostic;
import org.eclipse.emf.common.util.DiagnosticChain;
import org.eclipse.ocl.ParserException;
import org.eclipse.ocl.ecore.Constraint;
import org.eclipse.ocl.ecore.OCL;
import org.openhealthtools.mdht.uml.cda.CDAPackage;
import org.openhealthtools.mdht.uml.cda.RegionOfInterest;
import org.openhealthtools.mdht.uml.cda.util.CDAValidator;
/**
*
* A static utility class that provides operations related to 'Region Of Interest ' model objects.
*
*
*
* The following operations are supported:
*
* {@link org.openhealthtools.mdht.uml.cda.RegionOfInterest#validateClassCode(org.eclipse.emf.common.util.DiagnosticChain, java.util.Map) Validate Class Code }
* {@link org.openhealthtools.mdht.uml.cda.RegionOfInterest#validateMoodCode(org.eclipse.emf.common.util.DiagnosticChain, java.util.Map) Validate Mood Code }
*
*
*
* @generated
*/
public class RegionOfInterestOperations extends ClinicalStatementOperations {
/**
*
*
* @generated
*/
protected RegionOfInterestOperations() {
super();
}
/**
* The cached OCL expression body for the '{@link #validateClassCode(RegionOfInterest, org.eclipse.emf.common.util.DiagnosticChain, java.util.Map) Validate Class Code }' operation.
*
*
* @see #validateClassCode(RegionOfInterest, org.eclipse.emf.common.util.DiagnosticChain, java.util.Map)
* @generated
* @ordered
*/
protected static final String VALIDATE_CLASS_CODE__DIAGNOSTIC_CHAIN_MAP__EOCL_EXP = "self.isClassCodeDefined() implies self.classCode=vocab::ActClass::ROIOVL";
/**
* The cached OCL invariant for the '{@link #validateClassCode(RegionOfInterest, org.eclipse.emf.common.util.DiagnosticChain, java.util.Map) Validate Class Code }' invariant operation.
*
*
* @see #validateClassCode(RegionOfInterest, org.eclipse.emf.common.util.DiagnosticChain, java.util.Map)
* @generated
* @ordered
*/
protected static Constraint VALIDATE_CLASS_CODE__DIAGNOSTIC_CHAIN_MAP__EOCL_INV;
/**
*
*
*
* self.isClassCodeDefined() implies self.classCode=vocab::ActClass::ROIOVL
* @param regionOfInterest The receiving 'Region Of Interest ' model object.
* @param diagnostics The chain of diagnostics to which problems are to be appended.
* @param context The cache of context-specific information.
*
* @generated
*/
public static boolean validateClassCode(RegionOfInterest regionOfInterest, DiagnosticChain diagnostics,
Map context) {
if (VALIDATE_CLASS_CODE__DIAGNOSTIC_CHAIN_MAP__EOCL_INV == null) {
OCL.Helper helper = EOCL_ENV.createOCLHelper();
helper.setContext(CDAPackage.Literals.REGION_OF_INTEREST);
try {
VALIDATE_CLASS_CODE__DIAGNOSTIC_CHAIN_MAP__EOCL_INV = helper.createInvariant(VALIDATE_CLASS_CODE__DIAGNOSTIC_CHAIN_MAP__EOCL_EXP);
} catch (ParserException pe) {
throw new UnsupportedOperationException(pe.getLocalizedMessage());
}
}
if (!EOCL_ENV.createQuery(VALIDATE_CLASS_CODE__DIAGNOSTIC_CHAIN_MAP__EOCL_INV).check(regionOfInterest)) {
if (diagnostics != null) {
diagnostics.add(new BasicDiagnostic(
Diagnostic.ERROR,
CDAValidator.DIAGNOSTIC_SOURCE,
CDAValidator.REGION_OF_INTEREST__CLASS_CODE,
org.eclipse.emf.ecore.plugin.EcorePlugin.INSTANCE.getString(
"_UI_GenericInvariant_diagnostic",
new Object[] {
"validateClassCode",
org.eclipse.emf.ecore.util.EObjectValidator.getObjectLabel(regionOfInterest, context) }),
new Object[] { regionOfInterest }));
}
return false;
}
return true;
}
/**
* The cached OCL expression body for the '{@link #validateMoodCode(RegionOfInterest, org.eclipse.emf.common.util.DiagnosticChain, java.util.Map) Validate Mood Code }' operation.
*
*
* @see #validateMoodCode(RegionOfInterest, org.eclipse.emf.common.util.DiagnosticChain, java.util.Map)
* @generated
* @ordered
*/
protected static final String VALIDATE_MOOD_CODE__DIAGNOSTIC_CHAIN_MAP__EOCL_EXP = "self.isMoodCodeDefined() implies self.moodCode=vocab::ActMood::EVN";
/**
* The cached OCL invariant for the '{@link #validateMoodCode(RegionOfInterest, org.eclipse.emf.common.util.DiagnosticChain, java.util.Map) Validate Mood Code }' invariant operation.
*
*
* @see #validateMoodCode(RegionOfInterest, org.eclipse.emf.common.util.DiagnosticChain, java.util.Map)
* @generated
* @ordered
*/
protected static Constraint VALIDATE_MOOD_CODE__DIAGNOSTIC_CHAIN_MAP__EOCL_INV;
/**
*
*
*
* self.isMoodCodeDefined() implies self.moodCode=vocab::ActMood::EVN
* @param regionOfInterest The receiving 'Region Of Interest ' model object.
* @param diagnostics The chain of diagnostics to which problems are to be appended.
* @param context The cache of context-specific information.
*
* @generated
*/
public static boolean validateMoodCode(RegionOfInterest regionOfInterest, DiagnosticChain diagnostics,
Map context) {
if (VALIDATE_MOOD_CODE__DIAGNOSTIC_CHAIN_MAP__EOCL_INV == null) {
OCL.Helper helper = EOCL_ENV.createOCLHelper();
helper.setContext(CDAPackage.Literals.REGION_OF_INTEREST);
try {
VALIDATE_MOOD_CODE__DIAGNOSTIC_CHAIN_MAP__EOCL_INV = helper.createInvariant(VALIDATE_MOOD_CODE__DIAGNOSTIC_CHAIN_MAP__EOCL_EXP);
} catch (ParserException pe) {
throw new UnsupportedOperationException(pe.getLocalizedMessage());
}
}
if (!EOCL_ENV.createQuery(VALIDATE_MOOD_CODE__DIAGNOSTIC_CHAIN_MAP__EOCL_INV).check(regionOfInterest)) {
if (diagnostics != null) {
diagnostics.add(new BasicDiagnostic(
Diagnostic.ERROR,
CDAValidator.DIAGNOSTIC_SOURCE,
CDAValidator.REGION_OF_INTEREST__MOOD_CODE,
org.eclipse.emf.ecore.plugin.EcorePlugin.INSTANCE.getString(
"_UI_GenericInvariant_diagnostic",
new Object[] {
"validateMoodCode",
org.eclipse.emf.ecore.util.EObjectValidator.getObjectLabel(regionOfInterest, context) }),
new Object[] { regionOfInterest }));
}
return false;
}
return true;
}
} // RegionOfInterestOperations