Subversion Repositories eFlore/Applications.coel

Rev

Rev 702 | Rev 1119 | Go to most recent revision | Details | Compare with Previous | Last modification | View Log | RSS feed

Rev Author Line No. Line
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
 
576 jp_milcent 17
	@Resource("annuler.png")
18
	AbstractImagePrototype annuler();
19
 
508 gduche 20
	@Resource("application_formulaire_modifier.png")
21
	AbstractImagePrototype appFormModifier();
22
 
23
	@Resource("application_panneau_liste.png")
24
	AbstractImagePrototype appPanneauListe();
25
 
26
	@Resource("application.png")
27
	AbstractImagePrototype application();
28
 
576 jp_milcent 29
	@Resource("appliquer.png")
30
	AbstractImagePrototype appliquer();
31
 
989 jpm 32
	@Resource("bogue.png")
33
	AbstractImagePrototype bogue();
34
 
35
	@Resource("commentaire.png")
36
	AbstractImagePrototype commentaire();
37
 
508 gduche 38
	@Resource("connexion.png")
39
	AbstractImagePrototype connexion();
40
 
41
	@Resource("deconnexion.png")
42
	AbstractImagePrototype deconnexion();
43
 
702 jp_milcent 44
	@Resource("deplier_tout.png")
45
	AbstractImagePrototype deplierTout();
46
 
508 gduche 47
	@Resource("engrenages.png")
48
	AbstractImagePrototype engrenages();
702 jp_milcent 49
 
50
	@Resource("enregistrer.png")
51
	AbstractImagePrototype enregistrer();
52
 
508 gduche 53
	@Resource("fleche_bascule.png")
54
	AbstractImagePrototype flecheBascule();
55
 
989 jpm 56
	@Resource("fleche_dedans_dehors.png")
57
	AbstractImagePrototype flecheDedansDehors();
58
 
508 gduche 59
	@Resource("formulaire_ajouter.png")
60
	AbstractImagePrototype formAjouter();
61
 
62
	@Resource("formulaire_modifier.png")
63
	AbstractImagePrototype formModifier();
64
 
65
	@Resource("groupe_engrenage.png")
66
	AbstractImagePrototype groupeEngrenage();
67
 
68
	@Resource("images.png")
69
	AbstractImagePrototype images();
70
 
71
	@Resource("imprimer.png")
72
	AbstractImagePrototype imprimer();
73
 
74
	@Resource("information.png")
75
	AbstractImagePrototype information();
76
 
77
	@Resource("livre_ouvert.png")
513 jp_milcent 78
	AbstractImagePrototype livreOuvert();
508 gduche 79
 
80
	@Resource("rafraichir.png")
81
	AbstractImagePrototype rafraichir();
82
 
576 jp_milcent 83
	@Resource("reinitialiser.png")
84
	AbstractImagePrototype reinitialiser();
85
 
507 jp_milcent 86
	@Resource("replier_tout.png")
497 jp_milcent 87
	AbstractImagePrototype replierTout();
88
 
588 gduche 89
	@Resource("resultset_first.png")
90
	AbstractImagePrototype resultsetFirst();
91
 
92
	@Resource("resultset_last.png")
93
	AbstractImagePrototype resultsetLast();
94
 
95
	@Resource("resultset_next.png")
96
	AbstractImagePrototype resultsetNext();
97
 
98
	@Resource("resultset_previous.png")
99
	AbstractImagePrototype resultsetPrevious();
100
 
702 jp_milcent 101
	@Resource("script_go.png")
102
	AbstractImagePrototype scriptGo();
103
 
104
	@Resource("script_save.png")
105
	AbstractImagePrototype scriptSave();
106
 
107
	@Resource("supprimer.png")
108
	AbstractImagePrototype supprimer();
109
 
110
	@Resource("table.png")
111
	AbstractImagePrototype table();
112
 
113
	@Resource("utilisateur.png")
114
	AbstractImagePrototype utilisateur();
115
 
576 jp_milcent 116
	@Resource("valider.png")
117
	AbstractImagePrototype valider();
702 jp_milcent 118
 
119
	@Resource("vcard_ajouter.png")
120
	AbstractImagePrototype vcardAjouter();
121
 
122
	@Resource("vcard_modifier.png")
123
	AbstractImagePrototype vcardModifier();
576 jp_milcent 124
 
702 jp_milcent 125
	@Resource("vcard_supprimer.png")
126
	AbstractImagePrototype vcardSupprimer();
127
 
128
	@Resource("vcard.png")
129
	AbstractImagePrototype vcard();
497 jp_milcent 130
}