KickJava   Java API By Example, From Geeks To Geeks.

Java > Open Source Codes > com > icesoft > faces > context > ViewListener


1 package com.icesoft.faces.context;
2
3 public interface ViewListener {
4
5     /**
6      * New view has been created
7      */

8     void viewCreated();
9
10     /**
11      * View has been disposed either by window closing
12      * or timeout.
13      */

14     void viewDisposed();
15
16 }
17
Popular Tags