View Javadoc

1   package com.loribel.commons.abstraction;
2   
3   import javax.swing.event.*;
4   
5   /***
6    * Listener.
7    *
8    * @author Gregory Borelli
9    */
10  public interface GB_ChangeListener
11  {
12  
13      void valueChanged(
14              ChangeEvent a_event);
15  
16  }