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.Collection; 008 009/** 010 * A representation of the model object 'Activity'. The specification of parameterized behavior as 011 * the coordinated sequencing of subordinate units whose individual elements are actions. 012 * 013 * Metafacade interface to be used by AndroMDA cartridges. 014 */ 015public interface CallEventFacade 016 extends EventFacade 017{ 018 /** 019 * Indicates the metafacade type (used for metafacade mappings). 020 * 021 * @return boolean always <code>true</code> 022 */ 023 public boolean isCallEventFacadeMetaType(); 024 025 /** 026 * The operation called by this event. 027 * @return OperationFacade 028 */ 029 public OperationFacade getOperation(); 030 031 /** 032 * The operations of this call event facade. For UML 1.4 only one operation will be present, 033 * for UML2, there can be more than one present. 034 * @return Collection<OperationFacade> 035 */ 036 public Collection<OperationFacade> getOperations(); 037}