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 * Represents a role a user may play within a system.  Provides access to things such as services
009 * and service operations.
010 *
011 * Metafacade interface to be used by AndroMDA cartridges.
012 */
013public interface Role
014    extends ActorFacade
015{
016    /**
017     * Indicates the metafacade type (used for metafacade mappings).
018     *
019     * @return boolean always <code>true</code>
020     */
021    public boolean isRoleMetaType();
022
023    /**
024     * Indicates if the necessary references are present for the Role.  This include any references
025     * to a service, service operation or use case.
026     * @return boolean
027     */
028    public boolean isReferencesPresent();
029}