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.FrontEndFinalState; 8 import org.andromda.metafacades.uml.ModelElementFacade; 9 10 /** 11 * Represents a final state in a JSF use case. 12 * 13 * Metafacade interface to be used by AndroMDA cartridges. 14 */ 15 public interface JSFFinalState 16 extends FrontEndFinalState 17 { 18 /** 19 * Indicates the metafacade type (used for metafacade mappings). 20 * 21 * @return boolean always <code>true</code> 22 */ 23 public boolean isJSFFinalStateMetaType(); 24 25 /** 26 * The path to which this final state points. 27 * @return String 28 */ 29 public String getPath(); 30 31 /** 32 * The controller bean name to which this final state points. 33 * @return String 34 */ 35 public String getTargetControllerBeanName(); 36 37 /** 38 * The target controller to which this final state points. 39 * @return String 40 */ 41 public String getTargetControllerFullyQualifiedName(); 42 43 /** 44 * The element to which this final state points. 45 * @return ModelElementFacade 46 */ 47 public ModelElementFacade getTargetElement(); 48 }