View Javadoc

1   /*
2    * WebFlow Navigation Manager: webflow definiton, server side navigation history and automatic session cleaning.
3    * Distributed under LGPL license at web site http://wfnm.sourceforge.net .
4    */
5   package net.sf.wfnm;
6   
7   /***
8    * The listener for the page changed event
9    *
10   * @author <a href="mailto:malbari@users.sourceforge.net">Maurizio Albari</a>
11   * @version 1.0.6
12   */
13  public interface PageChangedListener {
14      /***
15       * Handles a closed page
16       *
17       * @param page the page url
18       * @param container the attribute container
19       */
20      void pageClosed(String page, AttributeContainer container);
21  
22      /***
23       * Handles a opened page
24       *
25       * @param page the page url
26       * @param container the attribute container
27       */
28      void pageOpened(String page, AttributeContainer container);
29  }