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.EnumerationFacade; 008 009/** 010 * Represents an enumeration used within a JSF application. 011 * 012 * Metafacade interface to be used by AndroMDA cartridges. 013 */ 014public interface JSFEnumeration 015 extends EnumerationFacade 016{ 017 /** 018 * Indicates the metafacade type (used for metafacade mappings). 019 * 020 * @return boolean always <code>true</code> 021 */ 022 public boolean isJSFEnumerationMetaType(); 023 024 /** 025 * The converter name used for this enumeration. 026 * @return String 027 */ 028 public String getConverterName(); 029 030 /** 031 * The path to the converter file. 032 * @return String 033 */ 034 public String getConverterPath(); 035 036 /** 037 * The fully qualified converter name for this enumeration. 038 * @return String 039 */ 040 public String getFullyQualifiedConverterName(); 041 042 /** 043 * TODO: Model Documentation for 044 * org.andromda.cartridges.jsf2.metafacades.JSFEnumeration.messageKey 045 * @return String 046 */ 047 public String getMessageKey(); 048}