01: package org.andromda.metafacades.emf.uml2;
02:
03: /**
04: * MetafacadeLogic implementation for
05: * org.andromda.metafacades.uml.ObjectFlowStateFacade.
06: * TODO: need to be implemented
07: *
08: * @see org.andromda.metafacades.uml.ObjectFlowStateFacade
09: */
10: public class ObjectFlowStateFacadeLogicImpl extends
11: ObjectFlowStateFacadeLogic {
12: public ObjectFlowStateFacadeLogicImpl(final Object metaObject,
13: final String context) {
14: super (metaObject, context);
15: }
16:
17: /**
18: * @see org.andromda.metafacades.uml.ObjectFlowStateFacade#getType()
19: */
20: protected java.lang.Object handleGetType() {
21: // TODO: add your implementation here!
22: return null;
23: }
24: }
|