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.List; 8 9 /** 10 * Represents a package storing "front-end" components. 11 * 12 * Metafacade interface to be used by AndroMDA cartridges. 13 */ 14 public interface FrontEndPackage 15 extends PackageFacade 16 { 17 /** 18 * Indicates the metafacade type (used for metafacade mappings). 19 * 20 * @return boolean always <code>true</code> 21 */ 22 public boolean isFrontEndPackageMetaType(); 23 24 /** 25 * The "front-end" controllers belonging to this package. 26 * @return List<FrontEndController> 27 */ 28 public List<FrontEndController> getFrontEndControllers(); 29 30 /** 31 * The use cases that make up the "front-end". 32 * @return List<FrontEndAction> 33 */ 34 public List<FrontEndAction> getFrontEndUseCases(); 35 }