001package org.andromda.metafacades.uml14;
002
003import org.omg.uml.behavioralelements.activitygraphs.ActionState;
004import org.omg.uml.behavioralelements.commonbehavior.Action;
005
006/**
007 * Metaclass facade implementation.
008 * @author Bob Fields
009 */
010public class ActionStateFacadeLogicImpl
011    extends ActionStateFacadeLogic
012{
013    private static final long serialVersionUID = 34L;
014    /**
015     * @param metaObject
016     * @param context
017     */
018    public ActionStateFacadeLogicImpl(
019        ActionState metaObject,
020        String context)
021    {
022        super(metaObject, context);
023    }
024
025    /**
026     * @see org.andromda.metafacades.uml14.ActionStateFacadeLogic#handleGetEntry()
027     */
028    protected Action handleGetEntry()
029    {
030        return metaObject.getEntry();
031    }
032}