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