60 |
jpm |
1 |
package org.tela_botanica.client.vues;
|
|
|
2 |
|
277 |
jp_milcent |
3 |
import org.tela_botanica.client.Mediateur;
|
|
|
4 |
import org.tela_botanica.client.RegistreId;
|
|
|
5 |
import org.tela_botanica.client.interfaces.Rafraichissable;
|
|
|
6 |
import org.tela_botanica.client.modeles.Information;
|
|
|
7 |
import org.tela_botanica.client.modeles.PersonneListe;
|
|
|
8 |
import org.tela_botanica.client.modeles.ProjetListe;
|
|
|
9 |
import org.tela_botanica.client.modeles.PublicationListe;
|
|
|
10 |
import org.tela_botanica.client.modeles.StructureListe;
|
156 |
jp_milcent |
11 |
|
277 |
jp_milcent |
12 |
import com.extjs.gxt.ui.client.Registry;
|
|
|
13 |
import com.extjs.gxt.ui.client.widget.Info;
|
60 |
jpm |
14 |
import com.extjs.gxt.ui.client.widget.LayoutContainer;
|
|
|
15 |
import com.extjs.gxt.ui.client.widget.layout.FitLayout;
|
277 |
jp_milcent |
16 |
import com.google.gwt.core.client.GWT;
|
60 |
jpm |
17 |
|
444 |
jp_milcent |
18 |
public class ContenuVue extends LayoutContainer implements Rafraichissable {
|
60 |
jpm |
19 |
|
373 |
jp_milcent |
20 |
private Mediateur mediateur = null;
|
|
|
21 |
|
444 |
jp_milcent |
22 |
public ContenuVue(Mediateur mediateurCourant) {
|
373 |
jp_milcent |
23 |
mediateur = mediateurCourant;
|
|
|
24 |
|
60 |
jpm |
25 |
setLayout(new FitLayout());
|
364 |
jp_milcent |
26 |
setBorders(true);
|
60 |
jpm |
27 |
}
|
277 |
jp_milcent |
28 |
|
|
|
29 |
//+----------------------------------------------------------------------------------------------------------------+
|
|
|
30 |
// RAFRAICHISSEMENT
|
|
|
31 |
//+----------------------------------------------------------------------------------------------------------------+
|
|
|
32 |
|
416 |
gduche |
33 |
public void rafraichir(Object nouvellesDonnees) {
|
|
|
34 |
if (nouvellesDonnees instanceof StructureListe) {
|
|
|
35 |
mediateur.afficherListeStructures((StructureListe) nouvellesDonnees);
|
|
|
36 |
} else if (nouvellesDonnees instanceof PublicationListe) {
|
|
|
37 |
mediateur.afficherListePublication((PublicationListe) nouvellesDonnees);
|
|
|
38 |
} else if (nouvellesDonnees instanceof PersonneListe) {
|
|
|
39 |
mediateur.afficherListePersonnes((PersonneListe) nouvellesDonnees);
|
|
|
40 |
} else if (nouvellesDonnees instanceof ProjetListe) {
|
|
|
41 |
mediateur.afficherListeProjets((ProjetListe) nouvellesDonnees);
|
|
|
42 |
} else if (nouvellesDonnees instanceof Information) {
|
|
|
43 |
Information info = (Information) nouvellesDonnees;
|
277 |
jp_milcent |
44 |
// Affichage des éventuels messages de déboguage ou d'alerte
|
|
|
45 |
if (info.getMessages() != null && !info.getMessages().toString().equals("[]")) {
|
|
|
46 |
GWT.log(info.getMessages().toString(), null);
|
|
|
47 |
}
|
|
|
48 |
// Traitement en fonction des types d'information
|
|
|
49 |
if (info.getType().equals("liste_personne")) {
|
|
|
50 |
mediateur.afficherListePersonnes((PersonneListe) info.getDonnee(0));
|
|
|
51 |
Info.display("Chargement d'une liste de personnes", "");
|
|
|
52 |
}
|
|
|
53 |
}
|
358 |
jp_milcent |
54 |
mediateur.desactiverChargement();
|
277 |
jp_milcent |
55 |
}
|
60 |
jpm |
56 |
}
|