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 * An include relationship defines that a use case contains the behavior defined in another use 009 * case. 010 * 011 * Metafacade interface to be used by AndroMDA cartridges. 012 */ 013public interface IncludeFacade 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 isIncludeFacadeMetaType(); 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 getAddition(); 030 031 /** 032 * The specification of a set of actions performed by a system, which yields an observable 033 * result that 034 * is, typically, of value for one or more actors or other stakeholders of the system. 035 * @return UseCaseFacade 036 */ 037 public UseCaseFacade getBase(); 038}