View Javadoc
1   // license-header java merge-point
2   //
3   // Attention: generated code (by Metafacade.vsl) - do not modify!
4   //
5   package org.andromda.cartridges.bpm4struts.metafacades;
6   
7   import org.andromda.metafacades.uml.FrontEndPseudostate;
8   
9   /**
10   * Encapsulates a pseudostate and provides specific Struts 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 StrutsPseudostate
16      extends FrontEndPseudostate
17  {
18      /**
19       * Indicates the metafacade type (used for metafacade mappings).
20       *
21       * @return boolean always <code>true</code>
22       */
23      public boolean isStrutsPseudostateMetaType();
24  
25      /**
26       * The method name that delegates transitions from this state.
27       * @return String
28       */
29      public String getActionMethodName();
30  }