View Javadoc
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    * Metaclass facade implementation.
8    * @author Bob Fields
9    */
10  public class ActionStateFacadeLogicImpl
11      extends ActionStateFacadeLogic
12  {
13      private static final long serialVersionUID = 34L;
14      /**
15       * @param metaObject
16       * @param context
17       */
18      public ActionStateFacadeLogicImpl(
19          ActionState metaObject,
20          String context)
21      {
22          super(metaObject, context);
23      }
24  
25      /**
26       * @see org.andromda.metafacades.uml14.ActionStateFacadeLogic#handleGetEntry()
27       */
28      protected Action handleGetEntry()
29      {
30          return metaObject.getEntry();
31      }
32  }