org.andromda.metafacades.uml14.NamespaceFacadeLogicImpl 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 java.util.Collection;
import org.omg.uml.foundation.core.Namespace;
/**
* MetafacadeLogic implementation.
*
* @see org.andromda.metafacades.uml.NamespaceFacade
* @author Bob Fields
*/
public class NamespaceFacadeLogicImpl
extends NamespaceFacadeLogic
{
private static final long serialVersionUID = 7205410153518880890L;
// ---------------- constructor -------------------------------
/**
* @param metaObject
* @param context
*/
public NamespaceFacadeLogicImpl(
org.omg.uml.foundation.core.Namespace metaObject,
String context)
{
super(metaObject, context);
}
// ------------- relations ------------------
/**
* @see org.andromda.metafacades.uml14.NamespaceFacadeLogic#handleGetOwnedElements()
*/
protected Collection handleGetOwnedElements()
{
return ((Namespace)metaObject).getOwnedElement();
}
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy