Subversion Repositories eFlore/Applications.coel

Rev

Rev 1693 | Go to most recent revision | Show entire file | Ignore whitespace | Details | Blame | Last modification | View Log | RSS feed

Rev 1693 Rev 1764
Line 11... Line 11...
11
import org.tela_botanica.client.i18n.Constantes;
11
import org.tela_botanica.client.i18n.Constantes;
12
import org.tela_botanica.client.interfaces.Rafraichissable;
12
import org.tela_botanica.client.interfaces.Rafraichissable;
13
import org.tela_botanica.client.modeles.Valeur;
13
import org.tela_botanica.client.modeles.Valeur;
14
import org.tela_botanica.client.modeles.ValeurListe;
14
import org.tela_botanica.client.modeles.ValeurListe;
15
import org.tela_botanica.client.modeles.aDonnee;
15
import org.tela_botanica.client.modeles.aDonnee;
16
import org.tela_botanica.client.modeles.projet.Projet;
-
 
17
import org.tela_botanica.client.modeles.projet.ProjetListe;
-
 
18
import org.tela_botanica.client.synchronisation.Sequenceur;
16
import org.tela_botanica.client.synchronisation.Sequenceur;
19
import org.tela_botanica.client.util.Debug;
17
import org.tela_botanica.client.util.Debug;
20
import org.tela_botanica.client.util.UtilString;
18
import org.tela_botanica.client.util.UtilString;
Line 21... Line 19...
21
 
19
 
Line 36... Line 34...
36
 
34
 
37
	protected HashMap<String, Valeur> ontologie = null;
35
	protected HashMap<String, Valeur> ontologie = null;
38
	protected boolean ontologieChargementOk = false;
36
	protected boolean ontologieChargementOk = false;
Line 39... Line -...
39
	private HashMap<Integer, String> ontologiesEnAttenteDeReception = null;
-
 
40
	
-
 
41
	protected ProjetListe projets = null;
-
 
42
	protected boolean projetsChargementOk = false;
37
	private HashMap<Integer, String> ontologiesEnAttenteDeReception = null;
Line 43... Line 38...
43
	
38
	
44
	protected String sautLigneTpl = null;
39
	protected String sautLigneTpl = null;
45
	
40
	
Line 50... Line 45...
50
		initialiserSautLigneTpl();
45
		initialiserSautLigneTpl();
Line 51... Line 46...
51
		
46
		
52
		ontologie = new HashMap<String, Valeur>();
47
		ontologie = new HashMap<String, Valeur>();
53
		ontologieChargementOk = false;
48
		ontologieChargementOk = false;
54
		ontologiesEnAttenteDeReception = new HashMap<Integer, String>();
-
 
Line 55... Line 49...
55
		chargerProjets();
49
		ontologiesEnAttenteDeReception = new HashMap<Integer, String>();
56
		
50
		
57
		setLayout(new FitLayout());
51
		setLayout(new FitLayout());
58
		setBorders(false);
52
		setBorders(false);
Line 59... Line 53...
59
		setScrollMode(Scroll.AUTO);
53
		setScrollMode(Scroll.AUTO);
60
	}
54
	}
61
	
55
	
62
	private void initialiserSautLigneTpl() {
-
 
63
		sautLigneTpl = "<br />\n";
-
 
64
	}
-
 
65
	
-
 
66
	private void chargerProjets() {
-
 
67
		mediateur.selectionnerProjet(this, null, null, false, null);
-
 
68
	}
-
 
69
		
-
 
70
	protected String construireTxtProjet(String idProjet) {
-
 
71
		String chaineARetourner = idProjet;
-
 
72
		
-
 
73
		if (projets != null) {
-
 
74
			Projet projet = projets.get(idProjet);
-
 
75
			if (projet != null) {
-
 
76
				String nomDuProjet = projet.getNom();
-
 
77
				if  (!nomDuProjet.equals("")) {
-
 
78
					chaineARetourner = nomDuProjet;
-
 
79
				}
-
 
80
			}
-
 
81
		}
-
 
Line 82... Line 56...
82
		
56
	private void initialiserSautLigneTpl() {
83
		return chaineARetourner;
57
		sautLigneTpl = "<br />\n";
84
	}
58
	}