1 // license-header java merge-point 2 // 3 // Attention: generated code (by Metafacade.vsl) - do not modify! 4 // 5 package org.andromda.cartridges.bpm4struts.metafacades; 6 7 import org.andromda.metafacades.uml.FrontEndActivityGraph; 8 9 /** 10 * Represents the activity graph describing the details of a Struts use-case. 11 * 12 * Metafacade interface to be used by AndroMDA cartridges. 13 */ 14 public interface StrutsActivityGraph 15 extends FrontEndActivityGraph 16 { 17 /** 18 * Indicates the metafacade type (used for metafacade mappings). 19 * 20 * @return boolean always <code>true</code> 21 */ 22 public boolean isStrutsActivityGraphMetaType(); 23 24 /** 25 * Returns the first action encountered in this activity graph. This is the one and only 26 * transition coming out of the initial state. 27 * @return StrutsAction 28 */ 29 public StrutsAction getFirstAction(); 30 }