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 representation of the model object 'Constraint'. A condition or restriction expressed in
9    * natural language text or in a machine readable language for the purpose of declaring some of the
10   * semantics of an element.
11   *
12   * Metafacade interface to be used by AndroMDA cartridges.
13   */
14  public interface GuardFacade
15      extends ModelElementFacade
16  {
17      /**
18       * Indicates the metafacade type (used for metafacade mappings).
19       *
20       * @return boolean always <code>true</code>
21       */
22      public boolean isGuardFacadeMetaType();
23  
24      /**
25       * TODO: Model Documentation for org.andromda.metafacades.uml.GuardFacade.body
26       * @return String
27       */
28      public String getBody();
29  
30      /**
31       * A directed relationship between a source vertex and a target vertex. It may be part of a
32       * compound
33       * transition, which takes the state machine from one state configuration to another,
34       * representing the
35       * complete response of the state machine to an occurrence of an event of a particular type.
36       * @return TransitionFacade
37       */
38      public TransitionFacade getTransition();
39  }