Subversion Repositories eFlore/Applications.coel

Rev

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

Rev 858 Rev 862
Line 29... Line 29...
29
	
29
	
30
	public ChampComboBoxListeValeurs(String labelDuChamp, String codeDeLaliste, int tabIndex) {
30
	public ChampComboBoxListeValeurs(String labelDuChamp, String codeDeLaliste, int tabIndex) {
31
		initialiserChampComboBox(labelDuChamp, codeDeLaliste, tabIndex);
31
		initialiserChampComboBox(labelDuChamp, codeDeLaliste, tabIndex);
Line -... Line 32...
-
 
32
	}
-
 
33
	
-
 
34
	public ChampComboBoxListeValeurs(String labelDuChamp, ValeurListe listeDeValeurs, int tabIndex) {
-
 
35
		initialiserChampComboBox(labelDuChamp, null, tabIndex);
-
 
36
		rafraichir(listeDeValeurs);
32
	}
37
	}
33
	
38
	
34
	private void initialiserChampComboBox(String labelDuChamp, String codeDeLaliste, int tabIndex) {
39
	private void initialiserChampComboBox(String labelDuChamp, String codeDeLaliste, int tabIndex) {
Line 35... Line 40...
35
		config = (Configuration) Registry.get(RegistreId.CONFIG);
40
		config = (Configuration) Registry.get(RegistreId.CONFIG);
Line 63... Line 68...
63
				}
68
				}
64
				return retour;
69
				return retour;
65
			}
70
			}
66
		});
71
		});
Line -... Line 72...
-
 
72
		
67
		
73
		if (codeDeLaliste != null) {
68
		setListeCode(codeDeLaliste);
74
			setListeCode(codeDeLaliste);
-
 
75
			mediateur.obtenirListeValeurEtRafraichir(this, getListeCode());
69
		mediateur.obtenirListeValeurEtRafraichir(this, getListeCode());
76
		}
Line 70... Line 77...
70
	}
77
	}
71
	
78
	
72
	public String getListeCode() {
79
	public String getListeCode() {