001// license-header java merge-point 002// 003// Attention: generated code (by Metafacade.vsl) - do not modify! 004// 005package org.andromda.metafacades.uml; 006 007/** 008 * Identifies a point in the behavior of a use case where that behavior can be extended by the 009 * behavior of some other (extending) use case, as specified by an extend relationship. 010 * 011 * Metafacade interface to be used by AndroMDA cartridges. 012 */ 013public interface ExtensionPointFacade 014 extends ModelElementFacade 015{ 016 /** 017 * Indicates the metafacade type (used for metafacade mappings). 018 * 019 * @return boolean always <code>true</code> 020 */ 021 public boolean isExtensionPointFacadeMetaType(); 022 023 /** 024 * The specification of a set of actions performed by a system, which yields an observable 025 * result that 026 * is, typically, of value for one or more actors or other stakeholders of the system. 027 * @return UseCaseFacade 028 */ 029 public UseCaseFacade getUseCase(); 030}