Skip to content

Commit 155d1df

Browse files
authored
Version2 files already reviewed in version 1.9
1 parent aee0db7 commit 155d1df

File tree

1 file changed

+20
-0
lines changed

1 file changed

+20
-0
lines changed

CallOperationAction.java

Lines changed: 20 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -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

Comments
 (0)