blob: c2cdcd29e20758c8cdb3ab41df6fea56dc177bee [file] [log] [blame]
/*****************************************************************************
* Copyright (c) 2014 CEA LIST.
*
* All rights reserved. This program and the accompanying materials
* are made available under the terms of the Eclipse Public License 2.0
* which accompanies this distribution, and is available at
* https://www.eclipse.org/legal/epl-2.0/
*
* SPDX-License-Identifier: EPL-2.0
*
* Contributors:
* CEA LIST - Initial API and implementation
*****************************************************************************/
package org.eclipse.papyrus.moka.fuml.standardlibrary.library.real;
import java.util.ArrayList;
import java.util.List;
import org.eclipse.papyrus.infra.core.Activator;
import org.eclipse.papyrus.moka.fuml.Semantics.Classes.Kernel.IValue;
import org.eclipse.papyrus.moka.fuml.Semantics.impl.Classes.Kernel.BooleanValue;
import org.eclipse.papyrus.moka.fuml.Semantics.impl.Classes.Kernel.RealValue;
import org.eclipse.papyrus.moka.fuml.Semantics.impl.CommonBehaviors.BasicBehaviors.OpaqueBehaviorExecution;
import org.eclipse.papyrus.moka.fuml.Semantics.CommonBehaviors.BasicBehaviors.IParameterValue;
import org.eclipse.uml2.uml.PrimitiveType;
public class LowerOrEqual extends OpaqueBehaviorExecution {
@Override
public void doBody(List<IParameterValue> inputParameters, List<IParameterValue> outputParameters) {
try {
Double x = ((RealValue) inputParameters.get(0).getValues().get(0)).value;
Double y = ((RealValue) inputParameters.get(1).getValues().get(0)).value;
BooleanValue result = new BooleanValue();
result.value = x <= y;
List<IValue> outputs = new ArrayList<IValue>();
result.type = (PrimitiveType) this.locus.getFactory().getBuiltInType("Real");
outputs.add(result);
outputParameters.get(0).setValues(outputs);
} catch (Exception e) {
Activator.log.error("An error occured during the execution of <= " + e.getMessage(), e);
}
}
@Override
public IValue new_() {
return new LowerOrEqual();
}
}