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 |
|
277 |
jp_milcent |
18 |
public class ContenuPanneauVue extends LayoutContainer implements Rafraichissable {
|
60 |
jpm |
19 |
|
|
|
20 |
public ContenuPanneauVue() {
|
|
|
21 |
setLayout(new FitLayout());
|
|
|
22 |
}
|
277 |
jp_milcent |
23 |
|
|
|
24 |
//+----------------------------------------------------------------------------------------------------------------+
|
|
|
25 |
// RAFRAICHISSEMENT
|
|
|
26 |
//+----------------------------------------------------------------------------------------------------------------+
|
|
|
27 |
|
|
|
28 |
public void rafraichir(Object nouvelleDonnees) {
|
|
|
29 |
Mediateur mediateur = ((Mediateur) Registry.get(RegistreId.MEDIATEUR));
|
|
|
30 |
if (nouvelleDonnees instanceof StructureListe) {
|
|
|
31 |
mediateur.afficherListeStructures((StructureListe) nouvelleDonnees);
|
|
|
32 |
} else if (nouvelleDonnees instanceof PublicationListe) {
|
|
|
33 |
mediateur.afficherListePublication((PublicationListe) nouvelleDonnees);
|
|
|
34 |
} else if (nouvelleDonnees instanceof PersonneListe) {
|
|
|
35 |
|
|
|
36 |
} else if (nouvelleDonnees instanceof ProjetListe) {
|
|
|
37 |
mediateur.afficherListeProjets((ProjetListe) nouvelleDonnees);
|
|
|
38 |
} else if (nouvelleDonnees instanceof Information) {
|
|
|
39 |
Information info = (Information) nouvelleDonnees;
|
|
|
40 |
// Affichage des éventuels messages de déboguage ou d'alerte
|
|
|
41 |
if (info.getMessages() != null && !info.getMessages().toString().equals("[]")) {
|
|
|
42 |
GWT.log(info.getMessages().toString(), null);
|
|
|
43 |
}
|
|
|
44 |
// Traitement en fonction des types d'information
|
|
|
45 |
if (info.getType().equals("liste_personne")) {
|
|
|
46 |
mediateur.afficherListePersonnes((PersonneListe) info.getDonnee(0));
|
|
|
47 |
Info.display("Chargement d'une liste de personnes", "");
|
|
|
48 |
}
|
|
|
49 |
}
|
|
|
50 |
}
|
60 |
jpm |
51 |
}
|