Details |
Last modification |
View Log
| RSS feed
| Rev |
Author |
Line No. |
Line |
| 2212 |
arthur |
1 |
package org.tela_botanica.del.client.resources;
|
|
|
2 |
|
|
|
3 |
import com.google.gwt.resources.client.ClientBundle;
|
|
|
4 |
import com.google.gwt.resources.client.ImageResource;
|
|
|
5 |
|
|
|
6 |
/**
|
|
|
7 |
* Resources used by the entire application.
|
|
|
8 |
*/
|
|
|
9 |
public interface Ressources extends ClientBundle {
|
|
|
10 |
|
|
|
11 |
@Source("logo.jpg")
|
|
|
12 |
ImageResource logo();
|
|
|
13 |
|
|
|
14 |
@Source("flecheGauche.png")
|
|
|
15 |
ImageResource arrowLeft();
|
|
|
16 |
|
|
|
17 |
@Source("flecheDroite.png")
|
|
|
18 |
ImageResource arrowRight();
|
|
|
19 |
|
|
|
20 |
|
|
|
21 |
}
|