1 package org.andromda.metafacades.uml14;
2
3 import org.omg.uml.behavioralelements.activitygraphs.ActionState;
4 import org.omg.uml.behavioralelements.commonbehavior.Action;
5
6
7
8
9
10 public class ActionStateFacadeLogicImpl
11 extends ActionStateFacadeLogic
12 {
13 private static final long serialVersionUID = 34L;
14
15
16
17
18 public ActionStateFacadeLogicImpl(
19 ActionState metaObject,
20 String context)
21 {
22 super(metaObject, context);
23 }
24
25
26
27
28 protected Action handleGetEntry()
29 {
30 return metaObject.getEntry();
31 }
32 }