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.PlaceOperations 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.Collection;
import java.util.Map;
import org.eclipse.emf.common.util.BasicDiagnostic;
import org.eclipse.emf.common.util.BasicEList;
import org.eclipse.emf.common.util.Diagnostic;
import org.eclipse.emf.common.util.DiagnosticChain;
import org.eclipse.emf.common.util.EList;
import org.eclipse.emf.ecore.EClassifier;
import org.eclipse.ocl.ParserException;
import org.eclipse.ocl.ecore.Constraint;
import org.eclipse.ocl.ecore.OCL;
import org.eclipse.ocl.expressions.OCLExpression;
import org.openhealthtools.mdht.uml.cda.CDAPackage;
import org.openhealthtools.mdht.uml.cda.Place;
import org.openhealthtools.mdht.uml.cda.util.CDAValidator;
import org.openhealthtools.mdht.uml.hl7.datatypes.AD;
import org.openhealthtools.mdht.uml.hl7.datatypes.EN;
import org.openhealthtools.mdht.uml.hl7.rim.operations.EntityOperations;
/**
*
* A static utility class that provides operations related to 'Place ' model objects.
*
*
*
* The following operations are supported:
*
* {@link org.openhealthtools.mdht.uml.cda.Place#validateClassCode(org.eclipse.emf.common.util.DiagnosticChain, java.util.Map) Validate Class Code }
* {@link org.openhealthtools.mdht.uml.cda.Place#validateDeterminerCode(org.eclipse.emf.common.util.DiagnosticChain, java.util.Map) Validate Determiner Code }
* {@link org.openhealthtools.mdht.uml.cda.Place#getNames() Get Names }
* {@link org.openhealthtools.mdht.uml.cda.Place#getAddrs() Get Addrs }
*
*
*
* @generated
*/
public class PlaceOperations extends EntityOperations {
/**
*
*
* @generated
*/
protected PlaceOperations() {
super();
}
/**
* The cached OCL expression body for the '{@link #validateClassCode(Place, org.eclipse.emf.common.util.DiagnosticChain, java.util.Map) Validate Class Code }' operation.
*
*
* @see #validateClassCode(Place, 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::EntityClassPlace::PLC";
/**
* The cached OCL invariant for the '{@link #validateClassCode(Place, org.eclipse.emf.common.util.DiagnosticChain, java.util.Map) Validate Class Code }' invariant operation.
*
*
* @see #validateClassCode(Place, 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::EntityClassPlace::PLC
* @param place The receiving 'Place ' 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(Place place, DiagnosticChain diagnostics, Map context) {
if (VALIDATE_CLASS_CODE__DIAGNOSTIC_CHAIN_MAP__EOCL_INV == null) {
OCL.Helper helper = EOCL_ENV.createOCLHelper();
helper.setContext(CDAPackage.Literals.PLACE);
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(place)) {
if (diagnostics != null) {
diagnostics.add(new BasicDiagnostic(
Diagnostic.ERROR, CDAValidator.DIAGNOSTIC_SOURCE, CDAValidator.PLACE__CLASS_CODE,
org.eclipse.emf.ecore.plugin.EcorePlugin.INSTANCE.getString(
"_UI_GenericInvariant_diagnostic",
new Object[] {
"validateClassCode",
org.eclipse.emf.ecore.util.EObjectValidator.getObjectLabel(place, context) }),
new Object[] { place }));
}
return false;
}
return true;
}
/**
* The cached OCL expression body for the '{@link #validateDeterminerCode(Place, org.eclipse.emf.common.util.DiagnosticChain, java.util.Map) Validate Determiner Code }' operation.
*
*
* @see #validateDeterminerCode(Place, org.eclipse.emf.common.util.DiagnosticChain, java.util.Map)
* @generated
* @ordered
*/
protected static final String VALIDATE_DETERMINER_CODE__DIAGNOSTIC_CHAIN_MAP__EOCL_EXP = "self.isDeterminerCodeDefined() implies self.determinerCode=vocab::EntityDeterminer::INSTANCE";
/**
* The cached OCL invariant for the '{@link #validateDeterminerCode(Place, org.eclipse.emf.common.util.DiagnosticChain, java.util.Map) Validate Determiner Code }' invariant operation.
*
*
* @see #validateDeterminerCode(Place, org.eclipse.emf.common.util.DiagnosticChain, java.util.Map)
* @generated
* @ordered
*/
protected static Constraint VALIDATE_DETERMINER_CODE__DIAGNOSTIC_CHAIN_MAP__EOCL_INV;
/**
*
*
*
* self.isDeterminerCodeDefined() implies self.determinerCode=vocab::EntityDeterminer::INSTANCE
* @param place The receiving 'Place ' 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 validateDeterminerCode(Place place, DiagnosticChain diagnostics, Map context) {
if (VALIDATE_DETERMINER_CODE__DIAGNOSTIC_CHAIN_MAP__EOCL_INV == null) {
OCL.Helper helper = EOCL_ENV.createOCLHelper();
helper.setContext(CDAPackage.Literals.PLACE);
try {
VALIDATE_DETERMINER_CODE__DIAGNOSTIC_CHAIN_MAP__EOCL_INV = helper.createInvariant(VALIDATE_DETERMINER_CODE__DIAGNOSTIC_CHAIN_MAP__EOCL_EXP);
} catch (ParserException pe) {
throw new UnsupportedOperationException(pe.getLocalizedMessage());
}
}
if (!EOCL_ENV.createQuery(VALIDATE_DETERMINER_CODE__DIAGNOSTIC_CHAIN_MAP__EOCL_INV).check(place)) {
if (diagnostics != null) {
diagnostics.add(new BasicDiagnostic(
Diagnostic.ERROR, CDAValidator.DIAGNOSTIC_SOURCE, CDAValidator.PLACE__DETERMINER_CODE,
org.eclipse.emf.ecore.plugin.EcorePlugin.INSTANCE.getString(
"_UI_GenericInvariant_diagnostic",
new Object[] {
"validateDeterminerCode",
org.eclipse.emf.ecore.util.EObjectValidator.getObjectLabel(place, context) }),
new Object[] { place }));
}
return false;
}
return true;
}
/**
* The cached OCL expression body for the '{@link #getNames(Place) Get Names }' operation.
*
*
* @see #getNames(Place)
* @generated
* @ordered
*/
protected static final String GET_NAMES__EOCL_EXP = "Bag { self.name }";
/**
* The cached OCL query for the '{@link #getNames(Place) Get Names }' query operation.
*
*
* @see #getNames(Place)
* @generated
* @ordered
*/
protected static OCLExpression GET_NAMES__EOCL_QRY;
/**
*
*
*
* Bag { self.name }
* @param place The receiving 'Place ' model object.
*
* @generated
*/
public static EList getNames(Place place) {
if (GET_NAMES__EOCL_QRY == null) {
OCL.Helper helper = EOCL_ENV.createOCLHelper();
helper.setOperationContext(CDAPackage.Literals.PLACE, CDAPackage.Literals.PLACE.getEAllOperations().get(16));
try {
GET_NAMES__EOCL_QRY = helper.createQuery(GET_NAMES__EOCL_EXP);
} catch (ParserException pe) {
throw new UnsupportedOperationException(pe.getLocalizedMessage());
}
}
OCL.Query query = EOCL_ENV.createQuery(GET_NAMES__EOCL_QRY);
@SuppressWarnings("unchecked")
Collection result = (Collection) query.evaluate(place);
return new BasicEList.UnmodifiableEList(result.size(), result.toArray());
}
/**
* The cached OCL expression body for the '{@link #getAddrs(Place) Get Addrs }' operation.
*
*
* @see #getAddrs(Place)
* @generated
* @ordered
*/
protected static final String GET_ADDRS__EOCL_EXP = "Bag { self.addr }";
/**
* The cached OCL query for the '{@link #getAddrs(Place) Get Addrs }' query operation.
*
*
* @see #getAddrs(Place)
* @generated
* @ordered
*/
protected static OCLExpression GET_ADDRS__EOCL_QRY;
/**
*
*
*
* Bag { self.addr }
* @param place The receiving 'Place ' model object.
*
* @generated
*/
public static EList getAddrs(Place place) {
if (GET_ADDRS__EOCL_QRY == null) {
OCL.Helper helper = EOCL_ENV.createOCLHelper();
helper.setOperationContext(CDAPackage.Literals.PLACE, CDAPackage.Literals.PLACE.getEAllOperations().get(17));
try {
GET_ADDRS__EOCL_QRY = helper.createQuery(GET_ADDRS__EOCL_EXP);
} catch (ParserException pe) {
throw new UnsupportedOperationException(pe.getLocalizedMessage());
}
}
OCL.Query query = EOCL_ENV.createQuery(GET_ADDRS__EOCL_QRY);
@SuppressWarnings("unchecked")
Collection result = (Collection) query.evaluate(place);
return new BasicEList.UnmodifiableEList(result.size(), result.toArray());
}
} // PlaceOperations