blob: 72ceff124b231825d31b9cb716c79e851ea1d974 [file] [log] [blame]
/*******************************************************************************
* 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.eclipse.mdht.uml.hl7.datatypes.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.emf.ecore.util.FeatureMap;
import org.eclipse.emf.ecore.util.FeatureMapUtil;
import org.eclipse.mdht.uml.hl7.datatypes.DatatypesPackage;
import org.eclipse.mdht.uml.hl7.datatypes.ED;
import org.eclipse.mdht.uml.hl7.datatypes.util.DatatypesUtil;
import org.eclipse.mdht.uml.hl7.datatypes.util.DatatypesValidator;
import org.eclipse.ocl.ParserException;
import org.eclipse.ocl.ecore.Constraint;
import org.eclipse.ocl.ecore.OCL;
/**
* <!-- begin-user-doc -->
* A static utility class that provides operations related to '<em><b>ED</b></em>' model objects.
* <!-- end-user-doc -->
*
* <p>
* The following operations are supported:
* </p>
* <ul>
* <li>{@link org.eclipse.mdht.uml.hl7.datatypes.ED#validateThumbnailThumbnail(org.eclipse.emf.common.util.DiagnosticChain, java.util.Map) <em>Validate Thumbnail Thumbnail</em>}</li>
* <li>{@link org.eclipse.mdht.uml.hl7.datatypes.ED#addText(java.lang.String) <em>Add Text</em>}</li>
* <li>{@link org.eclipse.mdht.uml.hl7.datatypes.ED#getText() <em>Get Text</em>}</li>
* <li>{@link org.eclipse.mdht.uml.hl7.datatypes.ED#matches(java.lang.String) <em>Matches</em>}</li>
* <li>{@link org.eclipse.mdht.uml.hl7.datatypes.ED#getCDATA() <em>Get CDATA</em>}</li>
* <li>{@link org.eclipse.mdht.uml.hl7.datatypes.ED#addCDATA(java.lang.String) <em>Add CDATA</em>}</li>
* </ul>
*
* @generated
*/
public class EDOperations extends ANYOperations {
/**
* The cached environment for evaluating OCL expressions.
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
* @generated
* @ordered
*/
protected static final ThreadLocal<OCL> EOCL_ENV = new ThreadLocal<OCL>() {
@Override
public OCL initialValue() {
return OCL.newInstance();
}
};
/**
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
* @generated
*/
protected EDOperations() {
super();
}
/**
* The cached OCL expression body for the '{@link #validateThumbnailThumbnail(ED, org.eclipse.emf.common.util.DiagnosticChain, java.util.Map) <em>Validate Thumbnail Thumbnail</em>}' operation.
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
* @see #validateThumbnailThumbnail(ED, org.eclipse.emf.common.util.DiagnosticChain, java.util.Map)
* @generated
* @ordered
*/
protected static final String VALIDATE_THUMBNAIL_THUMBNAIL__DIAGNOSTIC_CHAIN_MAP__EOCL_EXP = "not self.thumbnail.oclIsUndefined() implies self.thumbnail.thumbnail.oclIsUndefined()";
/**
* The cached OCL invariant for the '{@link #validateThumbnailThumbnail(ED, org.eclipse.emf.common.util.DiagnosticChain, java.util.Map) <em>Validate Thumbnail Thumbnail</em>}' invariant operation.
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
* @see #validateThumbnailThumbnail(ED, org.eclipse.emf.common.util.DiagnosticChain, java.util.Map)
* @generated
* @ordered
*/
protected static ThreadLocal<Constraint> VALIDATE_THUMBNAIL_THUMBNAIL__DIAGNOSTIC_CHAIN_MAP__EOCL_INV = new ThreadLocal<Constraint>();
/**
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
* <!-- begin-model-doc -->
* @param ed The receiving '<em><b>ED</b></em>' model object.
* @param diagnostics The chain of diagnostics to which problems are to be appended.
* @param context The cache of context-specific information.
* <!-- end-model-doc -->
* @generated
*/
public static boolean validateThumbnailThumbnail(ED ed, DiagnosticChain diagnostics, Map<Object, Object> context) {
DatatypesUtil.increment(context, "EDThumbnailThumbnail", "ERROR");
if (VALIDATE_THUMBNAIL_THUMBNAIL__DIAGNOSTIC_CHAIN_MAP__EOCL_INV.get() == null) {
synchronized (EOCL_ENV) {
OCL.Helper helper = EOCL_ENV.get().createOCLHelper();
helper.setContext(DatatypesPackage.Literals.ED);
try {
VALIDATE_THUMBNAIL_THUMBNAIL__DIAGNOSTIC_CHAIN_MAP__EOCL_INV.set(
helper.createInvariant(VALIDATE_THUMBNAIL_THUMBNAIL__DIAGNOSTIC_CHAIN_MAP__EOCL_EXP));
} catch (ParserException pe) {
throw new UnsupportedOperationException(pe.getLocalizedMessage());
}
}
}
if (!EOCL_ENV.get().createQuery(VALIDATE_THUMBNAIL_THUMBNAIL__DIAGNOSTIC_CHAIN_MAP__EOCL_INV.get()).check(ed)) {
if (diagnostics != null) {
diagnostics.add(
new BasicDiagnostic(
Diagnostic.ERROR, DatatypesValidator.DIAGNOSTIC_SOURCE,
DatatypesValidator.ED__THUMBNAIL_THUMBNAIL,
org.eclipse.emf.ecore.plugin.EcorePlugin.INSTANCE.getString(
"_UI_GenericInvariant_diagnostic",
new Object[] {
"validateThumbnailThumbnail",
org.eclipse.emf.ecore.util.EObjectValidator.getObjectLabel(ed, context) }),
new Object[] { ed }));
}
return false;
}
return true;
}
/**
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
* @generated NOT
*/
public static ED addText(ED ed, String text) {
if (text == null) {
throw new IllegalArgumentException("text is null");
}
FeatureMapUtil.addText(ed.getMixed(), text);
return ed;
}
/**
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
* @generated NOT
*/
public static String getText(ED ed) {
StringBuffer text = new StringBuffer("");
for (FeatureMap.Entry entry : ed.getMixed()) {
if (FeatureMapUtil.isText(entry)) {
text.append(entry.getValue().toString());
}
}
return text.toString();
}
/**
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
* @generated NOT
*/
public static boolean matches(ED ed, String regularExpression) {
return ed.getText().matches(regularExpression);
}
/**
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
* @generated NOT
*/
public static String getCDATA(ED ed) {
StringBuffer text = new StringBuffer("");
for (FeatureMap.Entry entry : ed.getMixed()) {
if (FeatureMapUtil.isCDATA(entry)) {
text.append(entry.getValue().toString());
}
}
return text.toString();
}
/**
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
* @generated NOT
*/
public static ED addCDATA(ED ed, String cdata) {
if (cdata == null) {
throw new IllegalArgumentException("CDATA is null");
}
FeatureMapUtil.addCDATA(ed.getMixed(), cdata);
return ed;
}
} // EDOperations