001// license-header java merge-point
002//
003// Attention: generated code (by Metafacade.vsl) - do not modify!
004//
005package org.andromda.cartridges.jbpm.metafacades;
006
007import java.util.List;
008import org.andromda.metafacades.uml.StateFacade;
009
010/**
011 * TODO: Model Documentation for org.andromda.cartridges.jbpm.metafacades.JBpmEventState
012 *
013 * Metafacade interface to be used by AndroMDA cartridges.
014 */
015public interface JBpmEventState
016    extends StateFacade, JBpmStateVertex
017{
018    /**
019     * Indicates the metafacade type (used for metafacade mappings).
020     *
021     * @return boolean always <code>true</code>
022     */
023    public boolean isJBpmEventStateMetaType();
024
025    /**
026     * TODO: Model Documentation for JBpmAction
027     * @return List<JBpmAction>
028     */
029    public List<JBpmAction> getAfterSignals();
030
031    /**
032     * TODO: Model Documentation for JBpmAction
033     * @return List<JBpmAction>
034     */
035    public List<JBpmAction> getBeforeSignals();
036
037    /**
038     * TODO: Model Documentation for JBpmAction
039     * @return List<JBpmAction>
040     */
041    public List<JBpmAction> getNodeEnters();
042
043    /**
044     * TODO: Model Documentation for JBpmAction
045     * @return List<JBpmAction>
046     */
047    public List<JBpmAction> getNodeLeaves();
048
049    /**
050     * TODO: Model Documentation for JBpmAction
051     * @return List<JBpmAction>
052     */
053    public List<JBpmAction> getTasks();
054
055    /**
056     * TODO: Model Documentation for JBpmAction
057     * @return List<JBpmAction>
058     */
059    public List<JBpmAction> getTimers();
060}