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

org.eclipse.ocl.expressions.operations.VariableExpOperations Maven / Gradle / Ivy

/**
 * 
 * 
 * Copyright (c) 2008 IBM Corporation, Zeligsoft Inc., 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 - Initial API and implementation
 *   Zeligsoft - Bug 207365
 * 
 * 
 *
 * $Id: VariableExpOperations.java,v 1.3 2008/10/12 01:09:49 cdamus Exp $
 */
package org.eclipse.ocl.expressions.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.Environment;
import org.eclipse.ocl.expressions.Variable;
import org.eclipse.ocl.expressions.VariableExp;

import org.eclipse.ocl.expressions.util.ExpressionsValidator;
import org.eclipse.ocl.internal.l10n.OCLMessages;
import org.eclipse.ocl.util.OCLUtil;
import org.eclipse.ocl.util.TypeUtil;

/**
 * 
 * A static utility class that provides operations related to 'Variable Exp' model objects.
 * 
 *
 * 

* The following operations are supported: *

    *
  • {@link org.eclipse.ocl.expressions.VariableExp#checkVarType(org.eclipse.emf.common.util.DiagnosticChain, java.util.Map) Check Var Type}
  • *
*

* * @generated */ public class VariableExpOperations extends OCLExpressionOperations { /** * * * @generated */ protected VariableExpOperations() { super(); } /** * * * * type = referredVariable.type * @param variableExp The receiving 'Variable Exp' model object. * @param diagnostics The chain of diagnostics to which problems are to be appended. * @param context The cache of context-specific information. * * @generated NOT */ public static boolean checkVarType(VariableExp variableExp, DiagnosticChain diagnostics, Map context) { boolean result = true; String message = null; Environment env = OCLUtil .getValidationEnvironment(variableExp, context); if (env != null) { Variable var = variableExp.getReferredVariable(); C type = variableExp.getType(); if ((var != null) && (type != null) && (var.getType() != null)) { if (!TypeUtil.exactTypeMatch(env, var.getType(), type)) { result = false; message = OCLMessages.bind( OCLMessages.VariableTypeMismatch_ERROR_, var.getName()); } } } if (!result) { if (diagnostics != null) { diagnostics.add(new BasicDiagnostic(Diagnostic.ERROR, ExpressionsValidator.DIAGNOSTIC_SOURCE, ExpressionsValidator.VARIABLE_EXP__VAR_TYPE, message, new Object[]{variableExp})); } } return result; } } // VariableExpOperations




© 2015 - 2024 Weber Informatics LLC | Privacy Policy