View Javadoc
1   // license-header java merge-point
2   //
3   // Attention: generated code (by Metafacade.vsl) - do not modify!
4   //
5   package org.andromda.cartridges.meta.metafacades;
6   
7   import org.andromda.metafacades.uml.GeneralizationFacade;
8   
9   /**
10   * Represents a generalization between two metafacades.
11   *
12   * Metafacade interface to be used by AndroMDA cartridges.
13   */
14  public interface MetafacadeGeneralization
15      extends GeneralizationFacade
16  {
17      /**
18       * Indicates the metafacade type (used for metafacade mappings).
19       *
20       * @return boolean always <code>true</code>
21       */
22      public boolean isMetafacadeGeneralizationMetaType();
23  
24      /**
25       * The getter name to retrieve this generalization.
26       * @return String
27       */
28      public String getGetterName();
29  
30      /**
31       * The visibility of the getter name for accessing this generalization.
32       * @return String
33       */
34      public String getGetterNameVisibility();
35  
36      /**
37       * Stores the precedence of this generalization (this only matters when multiple inheritance is
38       * taken into account).
39       * @return Integer
40       */
41      public Integer getPrecedence();
42  }