01: package org.andromda.metafacades.uml14;
02:
03: import java.util.Collection;
04:
05: import org.omg.uml.foundation.core.Namespace;
06:
07: /**
08: * MetafacadeLogic implementation.
09: *
10: * @see org.andromda.metafacades.uml.NamespaceFacade
11: */
12: public class NamespaceFacadeLogicImpl extends NamespaceFacadeLogic {
13: // ---------------- constructor -------------------------------
14: public NamespaceFacadeLogicImpl(
15: org.omg.uml.foundation.core.Namespace metaObject,
16: java.lang.String context) {
17: super (metaObject, context);
18: }
19:
20: // ------------- relations ------------------
21: protected Collection handleGetOwnedElements() {
22: return ((Namespace) metaObject).getOwnedElement();
23: }
24: }
|