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