Subversion Repositories eFlore/Applications.coel

Rev

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

Rev 434 Rev 436
Line 35... Line 35...
35
import com.extjs.gxt.ui.client.widget.toolbar.TextToolItem;
35
import com.extjs.gxt.ui.client.widget.toolbar.TextToolItem;
36
import com.extjs.gxt.ui.client.widget.toolbar.ToolBar;
36
import com.extjs.gxt.ui.client.widget.toolbar.ToolBar;
37
import com.google.gwt.core.client.GWT;
37
import com.google.gwt.core.client.GWT;
38
import com.google.gwt.user.client.Window;
38
import com.google.gwt.user.client.Window;
Line 39... Line 39...
39
 
39
 
Line 40... Line 40...
40
public class PanneauPersonneListe extends ContentPanel implements Rafraichissable {
40
public class PersonneListeVue extends ContentPanel implements Rafraichissable {
41
	
41
	
42
	private Mediateur mediateur = null ;
42
	private Mediateur mediateur = null ;
43
	private Table table = null;
43
	private Table table = null;
44
	private ListStore<Personne> store = null;
44
	private ListStore<Personne> store = null;
Line 45... Line 45...
45
	private TableBinder<Personne> binder = null;
45
	private TableBinder<Personne> binder = null;
46
	private Personne personneSelectionnee = null;
46
	private Personne personneSelectionnee = null;
Line 47... Line 47...
47
	
47
	
48
	public PanneauPersonneListe() {
48
	public PersonneListeVue() {
49
		mediateur = Registry.get(RegistreId.MEDIATEUR);
49
		mediateur = Registry.get(RegistreId.MEDIATEUR);