View Javadoc
1   // license-header java merge-point
2   //
3   // Attention: generated code (by Metafacade.vsl) - do not modify!
4   //
5   package org.andromda.metafacades.uml;
6   
7   /**
8    * A representation of the model object 'Call Operation Action'. An action that transmits an
9    * operation call request to the target object, where it may cause the invocation of associated
10   * behavior. The argument values of the action are available to the execution of the invoked
11   * behavior. If the action is marked synchronous, the execution of the call operation action waits
12   * until the execution of the invoked behavior completes and a reply transmission is returned to the
13   * caller; otherwise execution of the action is complete when the invocation of the operation is
14   * established and the execution of the invoked operation proceeds concurrently with the execution
15   * of the calling behavior. Any values returned as part of the reply transmission are put on the
16   * result output pins of the call operation action. Upon receipt of the reply transmission,
17   * execution of the call operation action is complete.
18   *
19   * Metafacade interface to be used by AndroMDA cartridges.
20   */
21  public interface CallActionFacade
22      extends ActionFacade
23  {
24      /**
25       * Indicates the metafacade type (used for metafacade mappings).
26       *
27       * @return boolean always <code>true</code>
28       */
29      public boolean isCallActionFacadeMetaType();
30  
31      /**
32       * The operation called by this action.
33       * @return OperationFacade
34       */
35      public OperationFacade getOperation();
36  }