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   import java.util.Collection;
8   
9   /**
10   * A representation of the model object 'Activity'. The specification of parameterized behavior as
11   * the coordinated sequencing of subordinate units whose individual elements are actions.
12   *
13   * Metafacade interface to be used by AndroMDA cartridges.
14   */
15  public interface CallEventFacade
16      extends EventFacade
17  {
18      /**
19       * Indicates the metafacade type (used for metafacade mappings).
20       *
21       * @return boolean always <code>true</code>
22       */
23      public boolean isCallEventFacadeMetaType();
24  
25      /**
26       * The operation called by this event.
27       * @return OperationFacade
28       */
29      public OperationFacade getOperation();
30  
31      /**
32       * The operations of this call event facade.  For UML 1.4 only one operation will be present,
33       * for UML2, there can be more than one present.
34       * @return Collection<OperationFacade>
35       */
36      public Collection<OperationFacade> getOperations();
37  }