All Downloads are FREE. Search and download functionalities are using the official Maven repository.

org.openhealthtools.mdht.uml.cda.operations.DataEntererOperations 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.ClinicalDocument;
import org.openhealthtools.mdht.uml.cda.DataEnterer;
import org.openhealthtools.mdht.uml.cda.util.CDAUtil;
import org.openhealthtools.mdht.uml.cda.util.CDAValidator;
import org.openhealthtools.mdht.uml.hl7.rim.operations.ParticipationOperations;

/**
 * 
 * A static utility class that provides operations related to 'Data Enterer' model objects.
 * 
 *
 * 

* The following operations are supported: *

    *
  • {@link org.openhealthtools.mdht.uml.cda.DataEnterer#validateTypeCode(org.eclipse.emf.common.util.DiagnosticChain, java.util.Map) Validate Type Code}
  • *
  • {@link org.openhealthtools.mdht.uml.cda.DataEnterer#validateContextControlCode(org.eclipse.emf.common.util.DiagnosticChain, java.util.Map) Validate Context Control Code}
  • *
  • {@link org.openhealthtools.mdht.uml.cda.DataEnterer#getClinicalDocument() Get Clinical Document}
  • *
*

* * @generated */ public class DataEntererOperations extends ParticipationOperations { /** * * * @generated */ protected DataEntererOperations() { super(); } /** * The cached OCL expression body for the '{@link #validateTypeCode(DataEnterer, org.eclipse.emf.common.util.DiagnosticChain, java.util.Map) Validate Type Code}' operation. * * * @see #validateTypeCode(DataEnterer, org.eclipse.emf.common.util.DiagnosticChain, java.util.Map) * @generated * @ordered */ protected static final String VALIDATE_TYPE_CODE__DIAGNOSTIC_CHAIN_MAP__EOCL_EXP = "self.isTypeCodeDefined() implies self.typeCode=vocab::ParticipationType::ENT"; /** * The cached OCL invariant for the '{@link #validateTypeCode(DataEnterer, org.eclipse.emf.common.util.DiagnosticChain, java.util.Map) Validate Type Code}' invariant operation. * * * @see #validateTypeCode(DataEnterer, org.eclipse.emf.common.util.DiagnosticChain, java.util.Map) * @generated * @ordered */ protected static Constraint VALIDATE_TYPE_CODE__DIAGNOSTIC_CHAIN_MAP__EOCL_INV; /** * * * * self.isTypeCodeDefined() implies self.typeCode=vocab::ParticipationType::ENT * @param dataEnterer The receiving 'Data Enterer' 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 validateTypeCode(DataEnterer dataEnterer, DiagnosticChain diagnostics, Map context) { if (VALIDATE_TYPE_CODE__DIAGNOSTIC_CHAIN_MAP__EOCL_INV == null) { OCL.Helper helper = EOCL_ENV.createOCLHelper(); helper.setContext(CDAPackage.Literals.DATA_ENTERER); try { VALIDATE_TYPE_CODE__DIAGNOSTIC_CHAIN_MAP__EOCL_INV = helper.createInvariant(VALIDATE_TYPE_CODE__DIAGNOSTIC_CHAIN_MAP__EOCL_EXP); } catch (ParserException pe) { throw new UnsupportedOperationException(pe.getLocalizedMessage()); } } if (!EOCL_ENV.createQuery(VALIDATE_TYPE_CODE__DIAGNOSTIC_CHAIN_MAP__EOCL_INV).check(dataEnterer)) { if (diagnostics != null) { diagnostics.add(new BasicDiagnostic( Diagnostic.ERROR, CDAValidator.DIAGNOSTIC_SOURCE, CDAValidator.DATA_ENTERER__TYPE_CODE, org.eclipse.emf.ecore.plugin.EcorePlugin.INSTANCE.getString( "_UI_GenericInvariant_diagnostic", new Object[] { "validateTypeCode", org.eclipse.emf.ecore.util.EObjectValidator.getObjectLabel(dataEnterer, context) }), new Object[] { dataEnterer })); } return false; } return true; } /** * The cached OCL expression body for the '{@link #validateContextControlCode(DataEnterer, org.eclipse.emf.common.util.DiagnosticChain, java.util.Map) Validate Context Control Code}' operation. * * * @see #validateContextControlCode(DataEnterer, org.eclipse.emf.common.util.DiagnosticChain, java.util.Map) * @generated * @ordered */ protected static final String VALIDATE_CONTEXT_CONTROL_CODE__DIAGNOSTIC_CHAIN_MAP__EOCL_EXP = "self.isContextControlCodeDefined() implies self.contextControlCode=vocab::ContextControl::OP"; /** * The cached OCL invariant for the '{@link #validateContextControlCode(DataEnterer, org.eclipse.emf.common.util.DiagnosticChain, java.util.Map) Validate Context Control Code}' invariant operation. * * * @see #validateContextControlCode(DataEnterer, org.eclipse.emf.common.util.DiagnosticChain, java.util.Map) * @generated * @ordered */ protected static Constraint VALIDATE_CONTEXT_CONTROL_CODE__DIAGNOSTIC_CHAIN_MAP__EOCL_INV; /** * * * * self.isContextControlCodeDefined() implies self.contextControlCode=vocab::ContextControl::OP * @param dataEnterer The receiving 'Data Enterer' 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 validateContextControlCode(DataEnterer dataEnterer, DiagnosticChain diagnostics, Map context) { if (VALIDATE_CONTEXT_CONTROL_CODE__DIAGNOSTIC_CHAIN_MAP__EOCL_INV == null) { OCL.Helper helper = EOCL_ENV.createOCLHelper(); helper.setContext(CDAPackage.Literals.DATA_ENTERER); try { VALIDATE_CONTEXT_CONTROL_CODE__DIAGNOSTIC_CHAIN_MAP__EOCL_INV = helper.createInvariant(VALIDATE_CONTEXT_CONTROL_CODE__DIAGNOSTIC_CHAIN_MAP__EOCL_EXP); } catch (ParserException pe) { throw new UnsupportedOperationException(pe.getLocalizedMessage()); } } if (!EOCL_ENV.createQuery(VALIDATE_CONTEXT_CONTROL_CODE__DIAGNOSTIC_CHAIN_MAP__EOCL_INV).check(dataEnterer)) { if (diagnostics != null) { diagnostics.add(new BasicDiagnostic( Diagnostic.ERROR, CDAValidator.DIAGNOSTIC_SOURCE, CDAValidator.DATA_ENTERER__CONTEXT_CONTROL_CODE, org.eclipse.emf.ecore.plugin.EcorePlugin.INSTANCE.getString( "_UI_GenericInvariant_diagnostic", new Object[] { "validateContextControlCode", org.eclipse.emf.ecore.util.EObjectValidator.getObjectLabel(dataEnterer, context) }), new Object[] { dataEnterer })); } return false; } return true; } /** * * * @generated NOT */ public static ClinicalDocument getClinicalDocument(DataEnterer dataEnterer) { return CDAUtil.getClinicalDocument(dataEnterer); } } // DataEntererOperations




© 2015 - 2024 Weber Informatics LLC | Privacy Policy