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 ManageableEntityAttribute
12 extends org.andromda.metafacades.uml.EntityAttribute
13 {
14
15 /***
16 * Indicates the metafacade type (used for metafacade mappings).
17 *
18 * @return always <code>true</code>
19 */
20 public boolean isManageableEntityAttributeMetaType();
21
22 /***
23 * <p>
24 * Whether or not this attribute should be displayed.
25 * </p>
26 */
27 public boolean isDisplay();
28
29 /***
30 * <p>
31 * Whether or not this attribute can be read in a call isolated
32 * from the rest (for example when downloading binary fields).
33 * </p>
34 */
35 public boolean isManageableGetterAvailable();
36
37 }