Subversion Repositories eFlore/Archives.cel-v1

Rev

Rev 4 | Go to most recent revision | Details | Compare with Previous | Last modification | View Log | RSS feed

Rev Author Line No. Line
2 ddelon 1
package org.tela_botanica.client;
2
 
3
 
4
/**
5
 * Event listener interface for table events.
6
 */
7
public interface AutoCompleteAsyncTextBoxListener {
8
 
9
  /**
10
   * Fired when a AutoCompleteBox is validated (enter)
11
   *
12
   * @param sender the widget sending the event
13
   * @param text : text selected
14
   */
6 ddelon 15
  void onValidate(SourcesAutoCompleteAsyncTextBoxEvents sender, String text, String value);
2 ddelon 16
}