Rev 386 | Go to most recent revision | Blame | Compare with Previous | Last modification | View Log | RSS feed
package org.tela_botanica.del.client.services.rest.async;import org.tela_botanica.del.client.modeles.ImageServiceResultat;import com.google.gwt.json.client.JSONParser;public abstract class ImagesParTaxonCallback extends PHPCallback<ImageServiceResultat> {@Overridepublic ImageServiceResultat parserJSON(String retourService) {ImageServiceResultat resultat = new ImageServiceResultat(JSONParser.parseStrict(retourService));return resultat;}}