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.FrontEndEvent;
8
9 /**
10 * A front-end JSF even (like the pressing of a button, etc).
11 *
12 * Metafacade interface to be used by AndroMDA cartridges.
13 */
14 public interface JSFEvent
15 extends FrontEndEvent
16 {
17 /**
18 * Indicates the metafacade type (used for metafacade mappings).
19 *
20 * @return boolean always <code>true</code>
21 */
22 public boolean isJSFEventMetaType();
23
24 /**
25 * The resource message key for this trigger.
26 * @return String
27 */
28 public String getMessageKey();
29
30 /**
31 * The resource message value for this trigger, this would be the button label or hyperlink
32 * name.
33 * @return String
34 */
35 public String getMessageValue();
36
37 /**
38 * The resource message key for the reset button.
39 * @return String
40 */
41 public String getResetMessageKey();
42
43 /**
44 * The default value for the reset button's message.
45 * @return String
46 */
47 public String getResetMessageValue();
48 }