Subversion Repositories eFlore/Archives.cel-v1

Rev

Rev 26 | Go to most recent revision | Show entire file | Ignore whitespace | Details | Blame | Last modification | View Log | RSS feed

Rev 26 Rev 27
Line 15... Line 15...
15
 
15
 
Line 16... Line 16...
16
 
16
 
17
import org.tela_botanica.client.AutoCompleteAsyncTextBox;
17
import org.tela_botanica.client.AutoCompleteAsyncTextBox;
18
 
18
 
Line 19... Line 19...
19
/**
19
/**
Line 20... Line 20...
20
 * Affiche une liste de nom pour selection. Son retournés le nom selectionné (gettext()) et un code associé (getvalue()).
20
 * Affiche une liste de nom pour selection. Son retourn�s le nom selectionn� (gettext()) et un code associ� (getvalue()).
Line 52... Line 52...
52
 
52
 
53
  			
53
  			
54
  			if ((jsonArray = jsonValue.isArray()) != null) {
54
  			if ((jsonArray = jsonValue.isArray()) != null) {
55
  				for (int i = 0; i < jsonArray.size(); ++i) {
55
  				for (int i = 0; i < jsonArray.size(); ++i) {
56
  				  if ((jsonArrayNested = jsonArray.get(i).isArray()) != null) {
56
  				  if ((jsonArrayNested = jsonArray.get(i).isArray()) != null) {
57
 			  		autoCompletebox.addItem(((JSONString) jsonArrayNested.get(0)).stringValue(),((JSONString) jsonArrayNested.get(1)).stringValue());
57
 			  		autoCompletebox.addItem(Util.toCelString(((JSONString) jsonArrayNested.get(0)).toString()),Util.toCelString(((JSONString) jsonArrayNested.get(1)).toString()));
58
  				  }
58
  				  }
Line 59... Line 59...
59
  				}
59
  				}