View Javadoc

1   package com.loribel.commons.abstraction;
2   
3   /***
4    * GB_SelectionListener defines the interface for an object that listens to changes for selection.
5    *
6    * @author Grégory Borelli
7    */
8   public interface GB_SelectionChangeListener
9   {
10  
11      /***
12       * Method selectionChanged.
13       */
14      void selectionChanged(
15              GB_SelectionEvent a_event);
16  
17  }