Subversion Repositories eFlore/Applications.coel

Rev

Rev 989 | Rev 1228 | 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
 
1119 jpm 77
	@Resource("lien_externe.png")
78
	AbstractImagePrototype lienExterne();
79
 
508 gduche 80
	@Resource("livre_ouvert.png")
513 jp_milcent 81
	AbstractImagePrototype livreOuvert();
508 gduche 82
 
83
	@Resource("rafraichir.png")
84
	AbstractImagePrototype rafraichir();
85
 
576 jp_milcent 86
	@Resource("reinitialiser.png")
87
	AbstractImagePrototype reinitialiser();
88
 
507 jp_milcent 89
	@Resource("replier_tout.png")
497 jp_milcent 90
	AbstractImagePrototype replierTout();
91
 
588 gduche 92
	@Resource("resultset_first.png")
93
	AbstractImagePrototype resultsetFirst();
94
 
95
	@Resource("resultset_last.png")
96
	AbstractImagePrototype resultsetLast();
97
 
98
	@Resource("resultset_next.png")
99
	AbstractImagePrototype resultsetNext();
100
 
101
	@Resource("resultset_previous.png")
102
	AbstractImagePrototype resultsetPrevious();
103
 
702 jp_milcent 104
	@Resource("script_go.png")
105
	AbstractImagePrototype scriptGo();
106
 
107
	@Resource("script_save.png")
108
	AbstractImagePrototype scriptSave();
109
 
110
	@Resource("supprimer.png")
111
	AbstractImagePrototype supprimer();
112
 
113
	@Resource("table.png")
114
	AbstractImagePrototype table();
115
 
116
	@Resource("utilisateur.png")
117
	AbstractImagePrototype utilisateur();
118
 
576 jp_milcent 119
	@Resource("valider.png")
120
	AbstractImagePrototype valider();
702 jp_milcent 121
 
122
	@Resource("vcard_ajouter.png")
123
	AbstractImagePrototype vcardAjouter();
124
 
125
	@Resource("vcard_modifier.png")
126
	AbstractImagePrototype vcardModifier();
576 jp_milcent 127
 
702 jp_milcent 128
	@Resource("vcard_supprimer.png")
129
	AbstractImagePrototype vcardSupprimer();
130
 
131
	@Resource("vcard.png")
132
	AbstractImagePrototype vcard();
497 jp_milcent 133
}