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    * Identifies a point in the behavior of a use case where that behavior can be extended by the
9    * behavior of some other (extending) use case, as specified by an extend relationship.
10   *
11   * Metafacade interface to be used by AndroMDA cartridges.
12   */
13  public interface ExtensionPointFacade
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 isExtensionPointFacadeMetaType();
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 getUseCase();
30  }