33,7 → 33,7 |
|
|
/** |
* Recherche Image repartition associee a un nom |
* Recherche Image associee a un nom |
* @param r |
* @param identifiant |
* @param numeroNomenclaturalSaisiObservation |
61,16 → 61,19 |
JSONValue responseValue = JSONParser.parse(response.getText()); |
JSONArray reponse; |
String urlImage=null; |
String urlImageMax=null; |
|
if ((reponse = responseValue.isArray()) != null) { |
// Url Image |
urlImage= ((JSONString)reponse.get(0)).stringValue(); |
urlImageMax= ((JSONString)reponse.get(1)).stringValue(); |
} |
else { |
urlImage=""; |
urlImageMax=""; |
} |
|
r.rafraichir(urlImage,true); |
r.rafraichir(new String[]{urlImage,urlImageMax},true); |
} |
}) ; |
|