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