View Javadoc

1   /*
2   @See License.txt@
3    */
4   
5   package spellcast.ui;
6   
7   import spellcast.gestures.*;
8   
9   /***
10   * This listener interface for receiving Gesture events from spellcast.
11   * When a gesture is selected the <code>gestureSelected</code> method is fired
12   * to all listeners.
13   *
14   * @author Barrie Treloar
15   */
16  public interface GestureListener
17  {
18      /***
19       * This method is fired when a gesture is selected.
20       * @param g The gesture that is selected.
21       */
22      public void gestureSelected( Gesture g );
23  }