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   import java.util.Collection;
8   
9   /**
10   * The specification of a set of actions performed by a system, which yields an observable result
11   * that is, typically, of value for one or more actors or other stakeholders of the system.
12   *
13   * Metafacade interface to be used by AndroMDA cartridges.
14   */
15  public interface UseCaseFacade
16      extends NamespaceFacade
17  {
18      /**
19       * Indicates the metafacade type (used for metafacade mappings).
20       *
21       * @return boolean always <code>true</code>
22       */
23      public boolean isUseCaseFacadeMetaType();
24  
25      /**
26       * The extend instances related to this use-case.
27       * @return Collection<ExtendFacade>
28       */
29      public Collection<ExtendFacade> getExtends();
30  
31      /**
32       * The extension points related to this use-case.
33       * @return Collection<ExtensionPointFacade>
34       */
35      public Collection<ExtensionPointFacade> getExtensionPoints();
36  
37      /**
38       * The first activity graph directly owned by this use-case.
39       * @return ActivityGraphFacade
40       */
41      public ActivityGraphFacade getFirstActivityGraph();
42  
43      /**
44       * The included instances related to this use-case.
45       * @return Collection<IncludeFacade>
46       */
47      public Collection<IncludeFacade> getIncludes();
48  }