001// license-header java merge-point 002// 003// Attention: generated code (by Metafacade.vsl) - do not modify! 004// 005package org.andromda.cartridges.jsf2.metafacades; 006 007import org.andromda.metafacades.uml.FrontEndEvent; 008 009/** 010 * A front-end JSF even (like the pressing of a button, etc). 011 * 012 * Metafacade interface to be used by AndroMDA cartridges. 013 */ 014public interface JSFEvent 015 extends FrontEndEvent 016{ 017 /** 018 * Indicates the metafacade type (used for metafacade mappings). 019 * 020 * @return boolean always <code>true</code> 021 */ 022 public boolean isJSFEventMetaType(); 023 024 /** 025 * The resource message key for this trigger. 026 * @return String 027 */ 028 public String getMessageKey(); 029 030 /** 031 * The resource message value for this trigger, this would be the button label or hyperlink 032 * name. 033 * @return String 034 */ 035 public String getMessageValue(); 036 037 /** 038 * The resource message key for the reset button. 039 * @return String 040 */ 041 public String getResetMessageKey(); 042 043 /** 044 * The default value for the reset button's message. 045 * @return String 046 */ 047 public String getResetMessageValue(); 048}