001// license-header java merge-point
002//
003// Attention: generated code (by Metafacade.vsl) - do not modify!
004//
005package org.andromda.metafacades.uml;
006
007import java.util.List;
008
009/**
010 * Encapsulates a pseudostate and provides specific front-end services. This pseudostate can be a
011 * decision point, junction or initial state.
012 *
013 * Metafacade interface to be used by AndroMDA cartridges.
014 */
015public interface FrontEndPseudostate
016    extends PseudostateFacade
017{
018    /**
019     * Indicates the metafacade type (used for metafacade mappings).
020     *
021     * @return boolean always <code>true</code>
022     */
023    public boolean isFrontEndPseudostateMetaType();
024
025    /**
026     * The actions that pass through this pseudo state.
027     * @return List<FrontEndAction>
028     */
029    public List<FrontEndAction> getContainerActions();
030
031    /**
032     * Indicates if this "front-end" pseudo date is contained within a "front-end" use case.
033     * @return boolean
034     */
035    public boolean isContainedInFrontEndUseCase();
036}