1
2
3
4 package org.andromda.metafacades.uml;
5
6 /***
7 *
8 *
9 * Metafacade interface to be used by AndroMDA cartridges.
10 */
11 public interface CallEventFacade
12 extends org.andromda.metafacades.uml.EventFacade
13 {
14
15 /***
16 * Indicates the metafacade type (used for metafacade mappings).
17 *
18 * @return always <code>true</code>
19 */
20 public boolean isCallEventFacadeMetaType();
21
22 /***
23 * <p>
24 * The operation called by this event.
25 * </p>
26 */
27 public org.andromda.metafacades.uml.OperationFacade getOperation();
28
29 /***
30 * <p>
31 * The operations of this call event facade. For UML 1.4 only one
32 * operation will be present, for UML2, there can be more than one
33 * present.
34 * </p>
35 */
36 public java.util.List getOperations();
37
38 }