Subversion Repositories eFlore/Archives.cel-v1

Rev

Rev 6 | Only display areas with differences | Ignore whitespace | Details | Blame | Last modification | View Log | RSS feed

Rev 6 Rev 25
1
package org.tela_botanica.client;
1
package org.tela_botanica.client;
-
 
2
 
-
 
3
import com.google.gwt.user.client.ResponseTextHandler;
2
 
4
 
3
 
5
 
4
/**
6
/**
5
 * Event listener interface for table events.
7
 * Event listener interface for table events.
6
 */
8
 */
7
public interface AutoCompleteAsyncTextBoxListener {
9
public interface AutoCompleteAsyncTextBoxListener {
8
 
10
 
9
  /**
11
  /**
10
   * Fired when a AutoCompleteBox is validated (enter)
12
   * Fired when a AutoCompleteBox is validated (enter)
11
   * 
13
   * 
12
   * @param sender the widget sending the event
14
   * @param sender the widget sending the event
13
   * @param text : text selected 
15
   * @param text : text selected 
14
   */
16
   */
15
  void onValidate(SourcesAutoCompleteAsyncTextBoxEvents sender, String text, String value);
17
  void onValidate(SourcesAutoCompleteAsyncTextBoxEvents sender, String text, String value);
-
 
18
  
-
 
19
  /**
-
 
20
   * Fired when a AutoCompleteBox is completed (selection)
-
 
21
   * 
-
 
22
   * @param sender the widget sending the event
-
 
23
   * @param text : text selected 
-
 
24
   */
-
 
25
 
-
 
26
  void onComplete(ResponseTextHandler sender, String text, String value);
16
}
27
}