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.meta.metafacades;
6   
7   import org.andromda.metafacades.uml.AssociationEndFacade;
8   
9   /**
10   * Represents the association end of a metafacade
11   *
12   * Metafacade interface to be used by AndroMDA cartridges.
13   */
14  public interface MetafacadeAssociationEnd
15      extends AssociationEndFacade
16  {
17      /**
18       * Indicates the metafacade type (used for metafacade mappings).
19       *
20       * @return boolean always <code>true</code>
21       */
22      public boolean isMetafacadeAssociationEndMetaType();
23  
24      /**
25       * The implementation name for the operation that handles the logic of the association end
26       * retrieval.
27       * @return String
28       */
29      public String getImplementationOperationName();
30  }