01: package org.andromda.metafacades.emf.uml2;
02:
03: import org.eclipse.uml2.CallOperationAction;
04:
05: /**
06: * MetafacadeLogic implementation for
07: * org.andromda.metafacades.uml.CallActionFacade. Note: It's not used in
08: * BPM4Struts.
09: *
10: * @see org.andromda.metafacades.uml.CallActionFacade
11: */
12: public class CallActionFacadeLogicImpl extends CallActionFacadeLogic {
13: public CallActionFacadeLogicImpl(
14: final CallOperationAction metaObject, final String context) {
15: super (metaObject, context);
16: }
17:
18: /**
19: * @see org.andromda.metafacades.uml.CallActionFacade#getOperation()
20: */
21: protected java.lang.Object handleGetOperation() {
22: return this.metaObject.getOperation();
23: }
24: }
|