1 // license-header java merge-point 2 // 3 // Attention: generated code (by Metafacade.vsl) - do not modify! 4 // 5 package org.andromda.metafacades.uml; 6 7 import java.util.Collection; 8 9 /** 10 * An element in a model that contains a set of named elements that can be identified by name. 11 * 12 * Metafacade interface to be used by AndroMDA cartridges. 13 */ 14 public interface NamespaceFacade 15 extends ClassifierFacade 16 { 17 /** 18 * Indicates the metafacade type (used for metafacade mappings). 19 * 20 * @return boolean always <code>true</code> 21 */ 22 public boolean isNamespaceFacadeMetaType(); 23 24 /** 25 * Gets the model elements which this namespace owns. 26 * @return Collection<ModelElementFacade> 27 */ 28 public Collection<ModelElementFacade> getOwnedElements(); 29 }