|
|
@@ -1,38 +1,54 @@
|
|
|
-/**
|
|
|
- * Copyright (c) 2013 committers of YAKINDU 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:
|
|
|
- * committers of YAKINDU - initial API and implementation
|
|
|
- *
|
|
|
- */
|
|
|
-package org.yakindu.sct.simulation.core.sexec.interpreter;
|
|
|
-
|
|
|
-import org.yakindu.base.types.Operation;
|
|
|
-
|
|
|
-/**
|
|
|
- * Called during simulation when an {@link Operation} is executed. Allows to
|
|
|
- * implement Mockups for operation calls.
|
|
|
- *
|
|
|
- * @author andreas muelder - Initial contribution and API
|
|
|
- *
|
|
|
- */
|
|
|
-public interface IOperationMockup {
|
|
|
- /**
|
|
|
- * Called before an operation is executed
|
|
|
- *
|
|
|
- * @return true if the implementation provides a mockup for the given
|
|
|
- * definition, false otherwise
|
|
|
- */
|
|
|
- public boolean canExecute(Operation definition, Object[] parameter);
|
|
|
-
|
|
|
- /**
|
|
|
- * Called when the operation is executed
|
|
|
- *
|
|
|
- * @return the operations return value, maybe null
|
|
|
- */
|
|
|
- public Object execute(Operation definition, Object[] parameter);
|
|
|
-
|
|
|
-}
|
|
|
+/**
|
|
|
+ * Copyright (c) 2013 committers of YAKINDU 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:
|
|
|
+ * committers of YAKINDU - initial API and implementation
|
|
|
+ *
|
|
|
+ */
|
|
|
+package org.yakindu.sct.simulation.core.sexec.interpreter;
|
|
|
+
|
|
|
+import org.yakindu.base.types.Operation;
|
|
|
+
|
|
|
+/**
|
|
|
+ * Called during simulation when an {@link Operation} is executed. Allows to
|
|
|
+ * implement Mockups for operation calls.
|
|
|
+ *
|
|
|
+ * @author andreas muelder - Initial contribution and API
|
|
|
+ *
|
|
|
+ */
|
|
|
+public interface IOperationMockup {
|
|
|
+ /**
|
|
|
+ * Called before an operation is executed
|
|
|
+ *
|
|
|
+ * @return true if the implementation provides a mockup for the given
|
|
|
+ * definition, false otherwise
|
|
|
+ */
|
|
|
+ public boolean canExecute(Operation definition, Object[] parameter);
|
|
|
+
|
|
|
+ /**
|
|
|
+ * Called when the operation is executed
|
|
|
+ *
|
|
|
+ * @return the operations return value, maybe null
|
|
|
+ */
|
|
|
+ public Object execute(Operation definition, Object[] parameter);
|
|
|
+
|
|
|
+ /**
|
|
|
+ * @author Johannes Dicks - Initial contribution and API
|
|
|
+ */
|
|
|
+ public static final class NullOperationMock implements IOperationMockup{
|
|
|
+
|
|
|
+ @Override
|
|
|
+ public boolean canExecute(Operation definition, Object[] parameter) {
|
|
|
+ return false;
|
|
|
+ }
|
|
|
+
|
|
|
+ @Override
|
|
|
+ public Object execute(Operation definition, Object[] parameter) {
|
|
|
+ return null;
|
|
|
+ }
|
|
|
+ }
|
|
|
+
|
|
|
+}
|