1
2
3
4 package org.andromda.metafacades.uml;
5
6 /***
7 *
8 *
9 * Metafacade interface to be used by AndroMDA cartridges.
10 */
11 public interface ManageableEntityAssociationEnd
12 extends org.andromda.metafacades.uml.EntityAssociationEnd
13 {
14
15 /***
16 * Indicates the metafacade type (used for metafacade mappings).
17 *
18 * @return always <code>true</code>
19 */
20 public boolean isManageableEntityAssociationEndMetaType();
21
22 /***
23 *
24 */
25 public org.andromda.metafacades.uml.EntityAttribute getManageableIdentifier();
26
27 /***
28 * <p>
29 * Whether or not this association end should be displayed.
30 * </p>
31 */
32 public boolean isDisplay();
33
34 }