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    * An include relationship defines that a use case contains the behavior defined in another use
9    * case.
10   *
11   * Metafacade interface to be used by AndroMDA cartridges.
12   */
13  public interface IncludeFacade
14      extends ModelElementFacade
15  {
16      /**
17       * Indicates the metafacade type (used for metafacade mappings).
18       *
19       * @return boolean always <code>true</code>
20       */
21      public boolean isIncludeFacadeMetaType();
22  
23      /**
24       * The specification of a set of actions performed by a system, which yields an observable
25       * result that
26       * is, typically, of value for one or more actors or other stakeholders of the system.
27       * @return UseCaseFacade
28       */
29      public UseCaseFacade getAddition();
30  
31      /**
32       * The specification of a set of actions performed by a system, which yields an observable
33       * result that
34       * is, typically, of value for one or more actors or other stakeholders of the system.
35       * @return UseCaseFacade
36       */
37      public UseCaseFacade getBase();
38  }