Subversion Repositories eFlore/Applications.coel

Rev

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

Rev 875 Rev 883
Line 83... Line 83...
83
 
83
 
Line 84... Line 84...
84
public class PersonneForm extends Formulaire implements Rafraichissable {
84
public class PersonneForm extends Formulaire implements Rafraichissable {
85
 
85
 
86
	// VARIABLES
-
 
87
	private TabItem tiIdentite, tiAdresses, tiInfosNat;
86
	// VARIABLES
88
	private Mediateur mediateur;
87
	private TabItem tiIdentite, tiAdresses, tiInfosNat;
89
	private Configuration config = (Configuration) Registry.get(RegistreId.CONFIG);
88
	private Configuration config = (Configuration) Registry.get(RegistreId.CONFIG);
Line 90... Line 89...
90
	private Personne personneSelectionnee, personneSauvegarde = null;
89
	private Personne personneSelectionnee, personneSauvegarde = null;
Line 111... Line 110...
111
		initialiserPersonneForm(mediateurCourrant, personneId);
110
		initialiserPersonneForm(mediateurCourrant, personneId);
112
	}
111
	}
Line 113... Line 112...
113
	
112
	
114
	public PersonneForm(Mediateur mediateurCourrant, String personneId, Rafraichissable vueARafraichirApresValidation) {
113
	public PersonneForm(Mediateur mediateurCourrant, String personneId, Rafraichissable vueARafraichirApresValidation) {
-
 
114
		vueExterneARafraichirApresValidation = vueARafraichirApresValidation;
115
		vueExterneARafraichirApresValidation = vueARafraichirApresValidation;
115
		personneId = (personneId == null ? "" : personneId);
116
		initialiserPersonneForm(mediateurCourrant, personneId);
116
		initialiserPersonneForm(mediateurCourrant, personneId);
Line 117... Line 117...
117
	}
117
	}
118
	
118