1 package com.loribel.commons.abstraction; 2 3 /*** 4 * ContentChangeListener defines the interface for an object that listens to changes for 5 * add, remove elements of a model. 6 * 7 * @author Grégory Borelli 8 */ 9 public interface GB_ContentChangeListener 10 { 11 12 /*** 13 * Method contentChanged. 14 * 15 * @param a_event GB_ContentChangeEvent - 16 */ 17 void contentChanged( 18 GB_ContentChangeEvent a_event); 19 20 }