View Javadoc

1   package com.loribel.commons.abstraction;
2   
3   import java.beans.*;
4   
5   /***
6    * Interface GB_MyPropertyChangeListener.
7    *
8    * @author Grégory Borelli
9    */
10  public interface GB_MyPropertyChangeListener
11  {
12  
13      /***
14       * Method myPropertyChange.
15       *
16       * @param a_event PropertyChangeEvent -
17       */
18      void myPropertyChange(
19              PropertyChangeEvent a_event);
20  
21  }