Subversion Repositories eFlore/Applications.coel

Rev

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

Rev 278 Rev 436
Line 15... Line 15...
15
import com.extjs.gxt.ui.client.widget.layout.BorderLayoutData;
15
import com.extjs.gxt.ui.client.widget.layout.BorderLayoutData;
16
import com.google.gwt.core.client.GWT;
16
import com.google.gwt.core.client.GWT;
Line 17... Line 17...
17
 
17
 
Line 18... Line 18...
18
public class PersonneVue extends LayoutContainer implements Rafraichissable {
18
public class PersonneVue extends LayoutContainer implements Rafraichissable {
19
 
19
 
Line 20... Line 20...
20
	private PanneauPersonneListe panneauPersonneListe;
20
	private PersonneListeVue panneauPersonneListe;
21
	private PersonneDetailPanneauVue panneauPersonneDetail;
21
	private PersonneDetailVue panneauPersonneDetail;
22
 
22
 
23
	public PersonneVue() {
23
	public PersonneVue() {
Line 24... Line 24...
24
		BorderLayout layout = new BorderLayout();
24
		BorderLayout layout = new BorderLayout();
25
		layout.setEnableState(false);
25
		layout.setEnableState(false);
Line 26... Line 26...
26
		setLayout(layout);
26
		setLayout(layout);
27
 
27
 
28
		panneauPersonneListe = new PanneauPersonneListe();
28
		panneauPersonneListe = new PersonneListeVue();
29
		this.add(panneauPersonneListe, new BorderLayoutData(LayoutRegion.CENTER));
29
		this.add(panneauPersonneListe, new BorderLayoutData(LayoutRegion.CENTER));
30
 
30
 
31
		panneauPersonneDetail = new PersonneDetailPanneauVue();
31
		panneauPersonneDetail = new PersonneDetailVue();