Subversion Repositories eFlore/Archives.cel-v1

Rev

Rev 11 | Rev 26 | 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
import java.util.EventListener;
6
 
7
 
4 ddelon 8
import com.google.gwt.json.client.JSONArray;
9
import com.google.gwt.json.client.JSONParser;
10
import com.google.gwt.json.client.JSONString;
11
import com.google.gwt.json.client.JSONValue;
12
import com.google.gwt.user.client.ResponseTextHandler;
2 ddelon 13
import com.google.gwt.user.client.ui.Composite;
14
import com.google.gwt.user.client.ui.HorizontalPanel;
15
 
16
 
17
import org.tela_botanica.client.AutoCompleteAsyncTextBox;
18
 
19
/**
11 ddelon 20
 * Affiche une liste de nom pour selection. Son retournés le nom selectionné (gettext()) et un code associé (getvalue()).
2 ddelon 21
 */
22
 
4 ddelon 23
public class NameAssistant extends Composite implements EventListener, ResponseTextHandler  {
2 ddelon 24
 
4 ddelon 25
  private AutoCompleteAsyncTextBox autoCompletebox = new AutoCompleteAsyncTextBox(this);
2 ddelon 26
  private HorizontalPanel panel = new HorizontalPanel();
27
 
11 ddelon 28
  private Mediator mediator = null;
29
 
30
 
31
  public NameAssistant(Mediator med) {
8 ddelon 32
 
11 ddelon 33
	mediator=med;
34
	mediator.registerNameAssistant(this);
35
 
36
 
8 ddelon 37
//	autoCompletebox.setFocus(true);
11 ddelon 38
	autoCompletebox.setSearchUrl(mediator.getServiceBaseUrl()+"/NameSearch/");
4 ddelon 39
 
2 ddelon 40
	panel.add(autoCompletebox);
41
 
42
	autoCompletebox.setWidth("100%");
43
    initWidget(panel);
11 ddelon 44
    autoCompletebox.addAutoCompleteAsyncTextBoxListener(mediator.getInventoryItemList());
2 ddelon 45
 
46
  }
47
 
4 ddelon 48
public void onCompletion(String str) {
49
 
50
  			JSONValue jsonValue= JSONParser.parse(str);
51
  			JSONArray jsonArray;
52
  			JSONArray jsonArrayNested;
53
 
54
 
55
  			if ((jsonArray = jsonValue.isArray()) != null) {
56
  				for (int i = 0; i < jsonArray.size(); ++i) {
57
  				  if ((jsonArrayNested = jsonArray.get(i).isArray()) != null) {
7 ddelon 58
 			  		autoCompletebox.addItem(((JSONString) jsonArrayNested.get(0)).stringValue(),((JSONString) jsonArrayNested.get(1)).stringValue());
4 ddelon 59
  				  }
60
  				}
61
  			}
62
 
63
  			autoCompletebox.displayList();
64
 
65
}
66
 
67
 
13 ddelon 68
public void setText(String str) {
69
	autoCompletebox.setText(str);
70
}
10 ddelon 71
 
13 ddelon 72
 
10 ddelon 73
public String getText() {
74
	return autoCompletebox.getText();
75
}
76
 
77
 
78
public String getValue() {
79
	return autoCompletebox.getValue();
80
}
81
 
13 ddelon 82
public void setValue(String value) {
83
	autoCompletebox.setValue(value);
84
}
85
 
4 ddelon 86
 
2 ddelon 87
}
88