Subversion Repositories eFlore/Archives.cel-v1

Rev

Rev 4 | Go to most recent revision | Only display areas with differences | Ignore whitespace | Details | Blame | Last modification | View Log | RSS feed

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