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   /**
8    * A signature containing the template parameters for the templated element (Class, operation,
9    * property, etc). A template signature bundles the set of formal template parameters for a
10   * templated element.
11   *
12   * Metafacade interface to be used by AndroMDA cartridges.
13   */
14  public interface RedefinableTemplateSignatureFacade
15      extends ModelElementFacade
16  {
17      /**
18       * Indicates the metafacade type (used for metafacade mappings).
19       *
20       * @return boolean always <code>true</code>
21       */
22      public boolean isRedefinableTemplateSignatureFacadeMetaType();
23  
24      /**
25       * The Class which is templated.
26       * @return ClassifierFacade
27       */
28      public ClassifierFacade getClassifier();
29  }