Go to most recent revision |
Details |
Last modification |
View Log
| RSS feed
Rev |
Author |
Line No. |
Line |
1151 |
aurelien |
1 |
package org.tela_botanica.del.client.services.rest;
|
|
|
2 |
|
|
|
3 |
import org.tela_botanica.del.client.services.rest.async.AjoutMotsClesImageCallBack;
|
|
|
4 |
import org.tela_botanica.del.client.services.rest.async.ListeMotsClesImageCallBack;
|
|
|
5 |
|
|
|
6 |
public interface MotsClesService {
|
|
|
7 |
|
|
|
8 |
public void getMotsClesImage(String idImage, ListeMotsClesImageCallBack listeMotsClesImageCallBack);
|
|
|
9 |
|
|
|
10 |
public void ajouterMotCleImage(String idImage, String motCle, AjoutMotsClesImageCallBack ajoutMotsClesImageCallBack);
|
|
|
11 |
|
|
|
12 |
}
|