2 |
aperonnet |
1 |
package org.tela_botanica.client;
|
|
|
2 |
|
|
|
3 |
import org.tela_botanica.client.image.ImageMediateur;
|
|
|
4 |
|
|
|
5 |
import com.google.gwt.core.client.EntryPoint;
|
20 |
david |
6 |
import com.google.gwt.user.client.ui.RootPanel;
|
2 |
aperonnet |
7 |
import com.gwtext.client.widgets.Viewport;
|
|
|
8 |
|
|
|
9 |
/**
|
|
|
10 |
* Entry point classes define <code>onModuleLoad()</code>.
|
|
|
11 |
*/
|
|
|
12 |
public class cel2 implements EntryPoint {
|
|
|
13 |
|
7 |
aperonnet |
14 |
/**
|
|
|
15 |
* This is the entry point method.
|
|
|
16 |
*/
|
|
|
17 |
public void onModuleLoad() {
|
|
|
18 |
|
12 |
david |
19 |
//ImageMediateur im = ImageMediateur.Instance();
|
7 |
aperonnet |
20 |
|
12 |
david |
21 |
//new Viewport(im.getPanneauPrincipalImage());
|
|
|
22 |
|
|
|
23 |
CarnetEnLigneMediateur carnetEnLigneMediateur= CarnetEnLigneMediateur.Instance();
|
|
|
24 |
|
20 |
david |
25 |
RootPanel.get().add(carnetEnLigneMediateur.getPanneauPrincipalCarnetEnLigne());
|
12 |
david |
26 |
|
20 |
david |
27 |
// TODO : l'utilisation du viewport rend l'application extremement lente en mode javas
|
|
|
28 |
// new Viewport(carnetEnLigneMediateur.getPanneauPrincipalCarnetEnLigne());
|
12 |
david |
29 |
|
|
|
30 |
// On appelle la gestion de l'identification
|
|
|
31 |
// Veillez d'ailleurs a ne pas appeller de services dans les constructeurs
|
|
|
32 |
|
|
|
33 |
carnetEnLigneMediateur.getEtatUtilisateur();
|
|
|
34 |
|
|
|
35 |
|
7 |
aperonnet |
36 |
}
|
2 |
aperonnet |
37 |
}
|