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.jbpm.metafacades;
6   
7   import java.util.List;
8   import org.andromda.metafacades.uml.StateFacade;
9   
10  /**
11   * TODO: Model Documentation for org.andromda.cartridges.jbpm.metafacades.JBpmEventState
12   *
13   * Metafacade interface to be used by AndroMDA cartridges.
14   */
15  public interface JBpmEventState
16      extends StateFacade, JBpmStateVertex
17  {
18      /**
19       * Indicates the metafacade type (used for metafacade mappings).
20       *
21       * @return boolean always <code>true</code>
22       */
23      public boolean isJBpmEventStateMetaType();
24  
25      /**
26       * TODO: Model Documentation for JBpmAction
27       * @return List<JBpmAction>
28       */
29      public List<JBpmAction> getAfterSignals();
30  
31      /**
32       * TODO: Model Documentation for JBpmAction
33       * @return List<JBpmAction>
34       */
35      public List<JBpmAction> getBeforeSignals();
36  
37      /**
38       * TODO: Model Documentation for JBpmAction
39       * @return List<JBpmAction>
40       */
41      public List<JBpmAction> getNodeEnters();
42  
43      /**
44       * TODO: Model Documentation for JBpmAction
45       * @return List<JBpmAction>
46       */
47      public List<JBpmAction> getNodeLeaves();
48  
49      /**
50       * TODO: Model Documentation for JBpmAction
51       * @return List<JBpmAction>
52       */
53      public List<JBpmAction> getTasks();
54  
55      /**
56       * TODO: Model Documentation for JBpmAction
57       * @return List<JBpmAction>
58       */
59      public List<JBpmAction> getTimers();
60  }