001package votorola.g.web.gwt.event;
002
003
004/** A handler of change events.
005  */
006public interface ChangeHandler extends com.google.gwt.event.shared.EventHandler
007{
008
009
010   // - C h a n g e - H a n d l e r ------------------------------------------------------
011
012
013    /** Handles the event.
014      */
015    public void onChange( Change e );
016
017
018}