Subversion Repositories eFlore/Applications.coel

Compare Revisions

Ignore whitespace Rev 297 → Rev 298

/trunk/src/org/tela_botanica/client/modeles/PersonneAsyncDao.java
13,10 → 13,8
import com.google.gwt.http.client.Response;
import com.google.gwt.http.client.URL;
import com.google.gwt.json.client.JSONArray;
import com.google.gwt.json.client.JSONException;
import com.google.gwt.json.client.JSONParser;
import com.google.gwt.json.client.JSONValue;
import com.google.gwt.user.client.Window;
 
 
public class PersonneAsyncDao {
33,7 → 31,7
String[] parametres = new String[3];
parametres[0] = (personneId == null ? "*" : personneId);
parametres[1] = (projetId == null ? "*" : projetId);
parametres[2] = (nomComplet == null ? "*" : URL.encodeComponent(nomComplet));
parametres[2] = (nomComplet == null ? "*" : nomComplet);
final RequestBuilder rb = UtilDAO.construireRequete(SERVICE_NOM, parametres);
try {
rb.sendRequest(null, new RequestCallback() {