/* * Copyright 2008 Lockheed Martin Corporation, except as stated in the file * entitled Licensing-Information. * * All modifications copyright 2009-2012 Data Access Technologies, Inc. * * Licensed under the Academic Free License version 3.0 * (http://www.opensource.org/licenses/afl-3.0.php), except as stated * in the file entitled Licensing-Information. * * Contributors: * MDS - initial API and implementation * */ package org.modeldriven.fuml.library.integerfunctions; import org.modeldriven.fuml.library.LibraryFunctions; import UMLPrimitiveTypes.intList; import fUML.Debug; import fUML.Semantics.Classes.Kernel.BooleanValue; import fUML.Semantics.Classes.Kernel.IntegerValue; public abstract class IntegerRelationalFunctionBehaviorExecution extends fUML.Semantics.CommonBehaviors.BasicBehaviors.OpaqueBehaviorExecution { public void doBody( fUML.Semantics.CommonBehaviors.BasicBehaviors.ParameterValueList inputParameters, fUML.Semantics.CommonBehaviors.BasicBehaviors.ParameterValueList outputParameters) { // Extract integer arguments and perform an integer function on them. intList integerArguments = new intList(); for (int i = 0; i < inputParameters.size(); i++) { int value = ((IntegerValue) (inputParameters.getValue(i)).values.getValue(0)).value; Debug.println("[doBody] argument = " + value); integerArguments.addValue(value); } BooleanValue result = new BooleanValue(); result.value = this.doIntegerFunction(integerArguments); result.type = this.locus.factory.getBuiltInType("Boolean"); Debug.println("[doBody] result = " + result.value); // Add output to the outputParameters list LibraryFunctions.addValueToOutputList(result, outputParameters); } public abstract boolean doIntegerFunction(UMLPrimitiveTypes.intList arguments); } // IntegerFunctionBehaviorExecution_ReturnBoolean