View Javadoc
1   // license-header java merge-point
2   //
3   // Attention: generated code (by Metafacade.vsl) - do not modify!
4   //
5   package org.andromda.metafacades.uml;
6   
7   import java.util.List;
8   
9   /**
10   * An actor specifies a role played by a user or any other system that interacts with the subject.
11   *
12   * Metafacade interface to be used by AndroMDA cartridges.
13   */
14  public interface ActorFacade
15      extends ClassifierFacade
16  {
17      /**
18       * Indicates the metafacade type (used for metafacade mappings).
19       *
20       * @return boolean always <code>true</code>
21       */
22      public boolean isActorFacadeMetaType();
23  
24      /**
25       * All actors generalized by this actor.
26       * @return List<ActorFacade>
27       */
28      public List<ActorFacade> getGeneralizedActors();
29  
30      /**
31       * The set of actors that generalize this actor.
32       * @return List<ActorFacade>
33       */
34      public List<ActorFacade> getGeneralizedByActors();
35  }