Subversion Repositories eFlore/Applications.coel

Rev

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

Rev 453 Rev 529
Line 18... Line 18...
18
 
18
 
Line 19... Line 19...
19
public class PersonneVue extends LayoutContainer implements Rafraichissable {
19
public class PersonneVue extends LayoutContainer implements Rafraichissable {
20
 
20
 
-
 
21
	private PersonneListeVue panneauPersonneListe;
Line 21... Line 22...
21
	private PersonneListeVue panneauPersonneListe;
22
	private PersonneDetailVue panneauPersonneDetail;
-
 
23
	private Mediateur mediateur = null;
-
 
24
 
22
	private PersonneDetailVue panneauPersonneDetail;
25
	public PersonneVue(Mediateur mediateur) {
23
 
26
		this.mediateur = mediateur;
24
	public PersonneVue() {
27
		
Line 25... Line 28...
25
		BorderLayout layout = new BorderLayout();
28
		BorderLayout layout = new BorderLayout();
26
		layout.setEnableState(false);
29
		layout.setEnableState(false);
Line 27... Line 30...
27
		setLayout(layout);
30
		setLayout(layout);
28
 
31
 
29
		panneauPersonneListe = new PersonneListeVue();
32
		panneauPersonneListe = new PersonneListeVue();
30
		this.add(panneauPersonneListe, new BorderLayoutData(LayoutRegion.CENTER));
33
		this.add(panneauPersonneListe, new BorderLayoutData(LayoutRegion.CENTER));
31
 
34
 
32
		panneauPersonneDetail = new PersonneDetailVue();
35
		panneauPersonneDetail = new PersonneDetailVue(mediateur);