001// license-header java merge-point
002//
003// Attention: generated code (by Metafacade.vsl) - do not modify!
004//
005package org.andromda.metafacades.uml;
006
007/**
008 * TODO: Model Documentation for org.andromda.metafacades.uml.ManageableEntityAttribute
009 *
010 * Metafacade interface to be used by AndroMDA cartridges.
011 */
012public interface ManageableEntityAttribute
013    extends EntityAttribute
014{
015    /**
016     * Indicates the metafacade type (used for metafacade mappings).
017     *
018     * @return boolean always <code>true</code>
019     */
020    public boolean isManageableEntityAttributeMetaType();
021
022    /**
023     * Whether or not this attribute should be displayed.
024     * @return boolean
025     */
026    public boolean isDisplay();
027
028    /**
029     * Whether or not this attribute can be read in a call isolated from the rest (for example when
030     * downloading binary fields).
031     * @return boolean
032     */
033    public boolean isManageableGetterAvailable();
034}