org.andromda.metafacades.uml14.CallActionFacadeLogicImpl Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of andromda-metafacades-uml14 Show documentation
Show all versions of andromda-metafacades-uml14 Show documentation
The UML 1.4 metafacades. This is the set of UML 1.4 metafacades
implementations. These implement the common UML metafacades.
The newest version!
package org.andromda.metafacades.uml14;
import org.omg.uml.behavioralelements.commonbehavior.CallAction;
import org.omg.uml.foundation.core.Operation;
/**
* MetafacadeLogic implementation.
*
* @see org.andromda.metafacades.uml.CallActionFacade
* @author Bob Fields
*/
public class CallActionFacadeLogicImpl
extends CallActionFacadeLogic
{
private static final long serialVersionUID = 4669846963639674859L;
/**
* @param metaObject
* @param context
*/
public CallActionFacadeLogicImpl(
CallAction metaObject,
String context)
{
super(metaObject, context);
}
/**
* @see org.andromda.metafacades.uml14.CallActionFacadeLogic#handleGetOperation()
*/
protected Operation handleGetOperation()
{
return metaObject.getOperation();
}
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy