1
2
3
4
5 package net.sf.wfnm;
6
7 /***
8 * The listener for the webflow changed event
9 *
10 * @author <a href="mailto:malbari@users.sourceforge.net">Maurizio Albari</a>
11 * @version 1.0.6
12 */
13 public interface WebflowChangedListener {
14 /***
15 * Handles a closed webflow
16 *
17 * @param webflowName the webflow name
18 * @param container the attribute container
19 */
20 void webflowClosed(String webflowName, AttributeContainer container);
21
22 /***
23 * Handles a opened webflow
24 *
25 * @param webflowName the webflow name
26 * @param container the attribute container
27 */
28 void webflowOpened(String webflowName, AttributeContainer container);
29 }