01: /*
02: * ContextListener.java
03: *
04: * Created on 2006/01/19, 3:58
05: *
06: * To change this template, choose Tools | Template Manager
07: * and open the template in the editor.
08: */
09:
10: package pnuts.tools;
11:
12: import pnuts.lang.Context;
13:
14: /**
15: *
16: * @author tomatsu
17: */
18: public interface ContextListener {
19: void update(ContextEvent event);
20: }
|