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.List;
8   
9   /**
10   * Encapsulates a pseudostate and provides specific front-end services. This pseudostate can be a
11   * decision point, junction or initial state.
12   *
13   * Metafacade interface to be used by AndroMDA cartridges.
14   */
15  public interface FrontEndPseudostate
16      extends PseudostateFacade
17  {
18      /**
19       * Indicates the metafacade type (used for metafacade mappings).
20       *
21       * @return boolean always <code>true</code>
22       */
23      public boolean isFrontEndPseudostateMetaType();
24  
25      /**
26       * The actions that pass through this pseudo state.
27       * @return List<FrontEndAction>
28       */
29      public List<FrontEndAction> getContainerActions();
30  
31      /**
32       * Indicates if this "front-end" pseudo date is contained within a "front-end" use case.
33       * @return boolean
34       */
35      public boolean isContainedInFrontEndUseCase();
36  }