Go to most recent revision |
Details |
Last modification |
View Log
| RSS feed
Rev |
Author |
Line No. |
Line |
342 |
aurelien |
1 |
package org.tela_botanica.del.client.services.rest.async;
|
|
|
2 |
|
|
|
3 |
import org.tela_botanica.del.client.modeles.ImageServiceResultat;
|
|
|
4 |
|
|
|
5 |
import com.google.gwt.json.client.JSONParser;
|
|
|
6 |
|
939 |
benjamin |
7 |
public abstract class ImagesParTaxonCallback extends PHPCallback<ImageServiceResultat> {
|
342 |
aurelien |
8 |
|
|
|
9 |
@Override
|
939 |
benjamin |
10 |
public ImageServiceResultat parserJSON(String retourService) {
|
|
|
11 |
ImageServiceResultat resultat = new ImageServiceResultat(JSONParser.parseStrict(retourService));
|
342 |
aurelien |
12 |
return resultat;
|
|
|
13 |
}
|
|
|
14 |
|
|
|
15 |
}
|