Skip to main content
aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
Diffstat (limited to 'extraplugins/moka/org.eclipse.papyrus.moka.fuml.standardlibrary/src/org/eclipse/papyrus/moka/fuml/standardlibrary/library/real/ToInteger.java')
-rw-r--r--extraplugins/moka/org.eclipse.papyrus.moka.fuml.standardlibrary/src/org/eclipse/papyrus/moka/fuml/standardlibrary/library/real/ToInteger.java48
1 files changed, 0 insertions, 48 deletions
diff --git a/extraplugins/moka/org.eclipse.papyrus.moka.fuml.standardlibrary/src/org/eclipse/papyrus/moka/fuml/standardlibrary/library/real/ToInteger.java b/extraplugins/moka/org.eclipse.papyrus.moka.fuml.standardlibrary/src/org/eclipse/papyrus/moka/fuml/standardlibrary/library/real/ToInteger.java
deleted file mode 100644
index 834cfa24989..00000000000
--- a/extraplugins/moka/org.eclipse.papyrus.moka.fuml.standardlibrary/src/org/eclipse/papyrus/moka/fuml/standardlibrary/library/real/ToInteger.java
+++ /dev/null
@@ -1,48 +0,0 @@
-/*****************************************************************************
- * 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 v1.0
- * which accompanies this distribution, and is available at
- * http://www.eclipse.org/legal/epl-v10.html
- *
- * 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.IntegerValue;
-import org.eclipse.papyrus.moka.fuml.Semantics.Classes.Kernel.RealValue;
-import org.eclipse.papyrus.moka.fuml.Semantics.Classes.Kernel.Value;
-import org.eclipse.papyrus.moka.fuml.Semantics.CommonBehaviors.BasicBehaviors.OpaqueBehaviorExecution;
-import org.eclipse.papyrus.moka.fuml.Semantics.CommonBehaviors.BasicBehaviors.ParameterValue;
-import org.eclipse.uml2.uml.PrimitiveType;
-
-public class ToInteger extends OpaqueBehaviorExecution {
-
- @Override
- public void doBody(List<ParameterValue> inputParameters, List<ParameterValue> outputParameters) {
- try {
- Double x = ((RealValue) inputParameters.get(0).values.get(0)).value;
- String y = x.toString();
- IntegerValue result = new IntegerValue();
- result.value = new Integer(y);
- result.type = (PrimitiveType) this.locus.factory.getBuiltInType("Real");
- List<Value> outputs = new ArrayList<Value>();
- outputs.add(result);
- outputParameters.get(0).values = outputs;
- } catch (Exception e) {
- Activator.log.error("An error occured during the execution of ToInteger " + e.getMessage(), e);
- }
- }
-
- @Override
- public Value new_() {
- // ADDED
- return new ToInteger();
- }
-}

Back to the top