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.List; 008 009/** 010 * Represents a package storing "front-end" components. 011 * 012 * Metafacade interface to be used by AndroMDA cartridges. 013 */ 014public interface FrontEndPackage 015 extends PackageFacade 016{ 017 /** 018 * Indicates the metafacade type (used for metafacade mappings). 019 * 020 * @return boolean always <code>true</code> 021 */ 022 public boolean isFrontEndPackageMetaType(); 023 024 /** 025 * The "front-end" controllers belonging to this package. 026 * @return List<FrontEndController> 027 */ 028 public List<FrontEndController> getFrontEndControllers(); 029 030 /** 031 * The use cases that make up the "front-end". 032 * @return List<FrontEndAction> 033 */ 034 public List<FrontEndAction> getFrontEndUseCases(); 035}