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    * Represents the activity graph describing the details of a presentation tier or "front end" use
9    * case.
10   *
11   * Metafacade interface to be used by AndroMDA cartridges.
12   */
13  public interface FrontEndActivityGraph
14      extends ActivityGraphFacade
15  {
16      /**
17       * Indicates the metafacade type (used for metafacade mappings).
18       *
19       * @return boolean always <code>true</code>
20       */
21      public boolean isFrontEndActivityGraphMetaType();
22  
23      /**
24       * The controller context for this activity graph. This controller can be the target of
25       * deferrable events in the action states and transitions in this graph.
26       * @return FrontEndController
27       */
28      public FrontEndController getController();
29  
30      /**
31       * This is the initial action encountered in this activity graph. This is the one and only
32       * transition coming out of the initial state.
33       * @return FrontEndAction
34       */
35      public FrontEndAction getInitialAction();
36  
37      /**
38       * True if this element is contained in a FrontEndUseCase.
39       * @return boolean
40       */
41      public boolean isContainedInFrontEndUseCase();
42  }