497 |
jp_milcent |
1 |
package org.tela_botanica.client.images.icones;
|
|
|
2 |
|
|
|
3 |
import com.google.gwt.user.client.ui.AbstractImagePrototype;
|
|
|
4 |
import com.google.gwt.user.client.ui.ImageBundle;
|
|
|
5 |
|
|
|
6 |
public interface Icones extends ImageBundle {
|
|
|
7 |
|
507 |
jp_milcent |
8 |
@Resource("aide.png")
|
497 |
jp_milcent |
9 |
AbstractImagePrototype aide();
|
|
|
10 |
|
508 |
gduche |
11 |
@Resource("ajax-loader.gif")
|
|
|
12 |
AbstractImagePrototype ajaxLoader();
|
|
|
13 |
|
|
|
14 |
@Resource("ajouter.png")
|
|
|
15 |
AbstractImagePrototype ajouter();
|
|
|
16 |
|
|
|
17 |
@Resource("application_formulaire_modifier.png")
|
|
|
18 |
AbstractImagePrototype appFormModifier();
|
|
|
19 |
|
|
|
20 |
@Resource("application_panneau_liste.png")
|
|
|
21 |
AbstractImagePrototype appPanneauListe();
|
|
|
22 |
|
|
|
23 |
@Resource("application.png")
|
|
|
24 |
AbstractImagePrototype application();
|
|
|
25 |
|
|
|
26 |
@Resource("connexion.png")
|
|
|
27 |
AbstractImagePrototype connexion();
|
|
|
28 |
|
|
|
29 |
@Resource("deconnexion.png")
|
|
|
30 |
AbstractImagePrototype deconnexion();
|
|
|
31 |
|
|
|
32 |
@Resource("engrenages.png")
|
|
|
33 |
AbstractImagePrototype engrenages();
|
|
|
34 |
|
|
|
35 |
@Resource("fleche_bascule.png")
|
|
|
36 |
AbstractImagePrototype flecheBascule();
|
|
|
37 |
|
|
|
38 |
@Resource("formulaire_ajouter.png")
|
|
|
39 |
AbstractImagePrototype formAjouter();
|
|
|
40 |
|
|
|
41 |
@Resource("formulaire_modifier.png")
|
|
|
42 |
AbstractImagePrototype formModifier();
|
|
|
43 |
|
|
|
44 |
@Resource("groupe_engrenage.png")
|
|
|
45 |
AbstractImagePrototype groupeEngrenage();
|
|
|
46 |
|
|
|
47 |
@Resource("images.png")
|
|
|
48 |
AbstractImagePrototype images();
|
|
|
49 |
|
|
|
50 |
@Resource("imprimer.png")
|
|
|
51 |
AbstractImagePrototype imprimer();
|
|
|
52 |
|
|
|
53 |
@Resource("information.png")
|
|
|
54 |
AbstractImagePrototype information();
|
|
|
55 |
|
|
|
56 |
@Resource("livre_ouvert.png")
|
513 |
jp_milcent |
57 |
AbstractImagePrototype livreOuvert();
|
508 |
gduche |
58 |
|
|
|
59 |
@Resource("rafraichir.png")
|
|
|
60 |
AbstractImagePrototype rafraichir();
|
|
|
61 |
|
|
|
62 |
@Resource("supprimer.png")
|
|
|
63 |
AbstractImagePrototype supprimer();
|
|
|
64 |
|
|
|
65 |
@Resource("table.png")
|
|
|
66 |
AbstractImagePrototype table();
|
|
|
67 |
|
|
|
68 |
@Resource("utilisateur.png")
|
|
|
69 |
AbstractImagePrototype utilisateur();
|
|
|
70 |
|
|
|
71 |
@Resource("vcard_ajouter.png")
|
|
|
72 |
AbstractImagePrototype vcardAjouter();
|
|
|
73 |
|
|
|
74 |
@Resource("vcard_supprimer.png")
|
|
|
75 |
AbstractImagePrototype vcardSupprimer();
|
|
|
76 |
|
|
|
77 |
@Resource("vcard.png")
|
|
|
78 |
AbstractImagePrototype vcard();
|
|
|
79 |
|
|
|
80 |
@Resource("deplier_tout.png")
|
|
|
81 |
AbstractImagePrototype deplierTout();
|
|
|
82 |
|
507 |
jp_milcent |
83 |
@Resource("replier_tout.png")
|
497 |
jp_milcent |
84 |
AbstractImagePrototype replierTout();
|
|
|
85 |
|
514 |
gduche |
86 |
@Resource("enregistrer.png")
|
|
|
87 |
AbstractImagePrototype enregistrer();
|
|
|
88 |
|
497 |
jp_milcent |
89 |
}
|