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 special kind of state signifying that the enclosing region is completed. If the enclosing
9    * region is directly contained in a state machine and all other regions in the state machine also
10   * are completed, then it means that the entire state machine is completed.
11   *
12   * Metafacade interface to be used by AndroMDA cartridges.
13   */
14  public interface FinalStateFacade
15      extends StateFacade
16  {
17      /**
18       * Indicates the metafacade type (used for metafacade mappings).
19       *
20       * @return boolean always <code>true</code>
21       */
22      public boolean isFinalStateFacadeMetaType();
23  }