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.EnumerationFacade; 8 9 /** 10 * Represents an enumeration used within a JSF application. 11 * 12 * Metafacade interface to be used by AndroMDA cartridges. 13 */ 14 public interface JSFEnumeration 15 extends EnumerationFacade 16 { 17 /** 18 * Indicates the metafacade type (used for metafacade mappings). 19 * 20 * @return boolean always <code>true</code> 21 */ 22 public boolean isJSFEnumerationMetaType(); 23 24 /** 25 * The converter name used for this enumeration. 26 * @return String 27 */ 28 public String getConverterName(); 29 30 /** 31 * The path to the converter file. 32 * @return String 33 */ 34 public String getConverterPath(); 35 36 /** 37 * The fully qualified converter name for this enumeration. 38 * @return String 39 */ 40 public String getFullyQualifiedConverterName(); 41 42 /** 43 * TODO: Model Documentation for 44 * org.andromda.cartridges.jsf2.metafacades.JSFEnumeration.messageKey 45 * @return String 46 */ 47 public String getMessageKey(); 48 }