001// license-header java merge-point
002//
003// Attention: generated code (by Metafacade.vsl) - do not modify!
004//
005package org.andromda.metafacades.uml;
006
007import java.util.Collection;
008
009/**
010 * An element in a model that contains a set of named elements that can be identified by name.
011 *
012 * Metafacade interface to be used by AndroMDA cartridges.
013 */
014public interface NamespaceFacade
015    extends ClassifierFacade
016{
017    /**
018     * Indicates the metafacade type (used for metafacade mappings).
019     *
020     * @return boolean always <code>true</code>
021     */
022    public boolean isNamespaceFacadeMetaType();
023
024    /**
025     * Gets the model elements which this namespace owns.
026     * @return Collection<ModelElementFacade>
027     */
028    public Collection<ModelElementFacade> getOwnedElements();
029}