We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent aee0db7 commit 155d1dfCopy full SHA for 155d1df
CallOperationAction.java
@@ -0,0 +1,20 @@
1
+/******************************
2
+* Copyright (c) 2003,2019 Kevin Lano
3
+* This program and the accompanying materials are made available under the
4
+* terms of the Eclipse Public License 2.0 which is available at
5
+* http://www.eclipse.org/legal/epl-2.0
6
+*
7
+* SPDX-License-Identifier: EPL-2.0
8
+* *****************************/
9
+
10
+public class CallOperationAction extends ActivityAction
11
+{ BehaviouralFeature operation;
12
13
+ public CallOperationAction(String nme)
14
+ { super(nme); }
15
16
+ public Statement toStatement()
17
+ { return new InvocationStatement(operation); }
18
19
+ public void generateJava(java.io.PrintWriter out) { }
20
+}
0 commit comments