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