001// license-header java merge-point 002// 003// Attention: generated code (by Metafacade.vsl) - do not modify! 004// 005package org.andromda.cartridges.bpm4struts.metafacades; 006 007import org.andromda.metafacades.uml.FrontEndActivityGraph; 008 009/** 010 * Represents the activity graph describing the details of a Struts use-case. 011 * 012 * Metafacade interface to be used by AndroMDA cartridges. 013 */ 014public interface StrutsActivityGraph 015 extends FrontEndActivityGraph 016{ 017 /** 018 * Indicates the metafacade type (used for metafacade mappings). 019 * 020 * @return boolean always <code>true</code> 021 */ 022 public boolean isStrutsActivityGraphMetaType(); 023 024 /** 025 * Returns the first action encountered in this activity graph. This is the one and only 026 * transition coming out of the initial state. 027 * @return StrutsAction 028 */ 029 public StrutsAction getFirstAction(); 030}