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.jsf2.metafacades;
6   
7   import org.andromda.metafacades.uml.ClassifierFacade;
8   
9   /**
10   * Represents the portlet preferences for a given use case (assuming the JSF application being
11   * generated is a portlet).
12   *
13   * Metafacade interface to be used by AndroMDA cartridges.
14   */
15  public interface JSFPortletPreferences
16      extends ClassifierFacade
17  {
18      /**
19       * Indicates the metafacade type (used for metafacade mappings).
20       *
21       * @return boolean always <code>true</code>
22       */
23      public boolean isJSFPortletPreferencesMetaType();
24  
25      /**
26       * The use case to which the portlet preferences belongs.
27       * @return JSFUseCase
28       */
29      public JSFUseCase getUseCase();
30  }