Subversion Repositories eFlore/Applications.coel

Rev

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

Rev 862 Rev 865
Line 46... Line 46...
46
	private ChampComboBoxListeValeurs precisionTypeNbreCombo = null;
46
	private ChampComboBoxListeValeurs precisionTypeNbreCombo = null;
47
	private NumberField nbreTypeChp = null;
47
	private NumberField nbreTypeChp = null;
48
	private ChampComboBoxListeValeurs classementSpecimenTypeCombo;
48
	private ChampComboBoxListeValeurs classementSpecimenTypeCombo;
Line 49... Line 49...
49
	
49
	
50
	private ComboBox<Valeur> typeDepotCombo = null;
50
	private ComboBox<Valeur> typeDepotCombo = null;
51
	private TextField<String> guidChp;
51
	private TextField<String> coteChp = null;
52
	private ChampMultiValeurs idAlternatifsChp;
52
	private ChampMultiValeurs idAlternatifsChp = null;
53
	private ChampMultiValeurs nomsAlternatifsChp;
53
	private ChampMultiValeurs nomsAlternatifsChp = null;
Line 54... Line 54...
54
	private ChampMultiValeurs codesAlternatifsChp;	
54
	private ChampMultiValeurs codesAlternatifsChp = null;
55
	
55
	
56
	private TextArea descriptionSpecialisteChp;
56
	private TextArea descriptionSpecialisteChp = null;
57
	private TextArea descriptionChp;
57
	private TextArea descriptionChp = null;
Line 58... Line 58...
58
	private TextArea historiqueChp;
58
	private TextArea historiqueChp = null;
Line 59... Line 59...
59
	private ChampMultiValeurs urlsChp;
59
	private ChampMultiValeurs urlsChp = null;
60
 
60
 
61
	private ChampComboBoxListeValeurs butRealisationCombo;
61
	private ChampComboBoxListeValeurs butRealisationCombo = null;
62
	
62
	
Line 172... Line 172...
172
		administratifFieldSet.setLayout(Formulaire.creerFormLayout(largeurLabelDefaut, alignementLabelDefaut));
172
		administratifFieldSet.setLayout(Formulaire.creerFormLayout(largeurLabelDefaut, alignementLabelDefaut));
Line 173... Line 173...
173
		
173
		
174
		typeDepotCombo = new ChampComboBoxListeValeurs(i18nC.typeDepot(), "typeDepot", tabIndex++);
174
		typeDepotCombo = new ChampComboBoxListeValeurs(i18nC.typeDepot(), "typeDepot", tabIndex++);
Line 175... Line 175...
175
		administratifFieldSet.add(typeDepotCombo);
175
		administratifFieldSet.add(typeDepotCombo);
-
 
176
		
176
		
177
		coteChp = new TextField<String>();
177
		guidChp = new TextField<String>();
178
		coteChp.setTabIndex(tabIndex++);
Line 178... Line 179...
178
		guidChp.setFieldLabel(i18nC.guidCollection());
179
		coteChp.setFieldLabel(i18nC.cote());
179
		administratifFieldSet.add(guidChp);
180
		administratifFieldSet.add(coteChp, new FormData(450, 0));
Line 180... Line 181...
180
		
181