Subversion Repositories eFlore/Applications.cel

Rev

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

Rev 42 Rev 59
Line 85... Line 85...
85
	private ColumnConfig cl = null;
85
	private ColumnConfig cl = null;
Line 86... Line 86...
86
 
86
 
87
	/**
87
	/**
88
	 * Barre de pagination
88
	 * Barre de pagination
89
	 */
89
	 */
Line 90... Line 90...
90
	private pageToolBarVue bt = null;
90
	private BarrePaginationVue bt = null;
91
 
91
 
92
	/**
92
	/**
93
	 * Constructeur sans arguments (privé car ne doit pas être utilisé)
93
	 * Constructeur sans arguments (privé car ne doit pas être utilisé)
Line 109... Line 109...
109
		this.setId("listeImageGrid");
109
		this.setId("listeImageGrid");
110
		// on associe le médiateur
110
		// on associe le médiateur
111
		this.iMediateur = im;
111
		this.iMediateur = im;
Line 112... Line 112...
112
 
112
 
113
		// on place la barre de pagination
113
		// on place la barre de pagination
-
 
114
		bt = new BarrePaginationVue(iMediateur);
-
 
115
		bt.setLabelElement("Images");
114
		bt = new pageToolBarVue(iMediateur);
116
		bt.setTaillePageParDefaut(50);
Line 115... Line 117...
115
		setBottomToolbar(bt);
117
		setBottomToolbar(bt);
116
 
118
 
117
		// on construit le modèle de colonnes
119
		// on construit le modèle de colonnes
Line 484... Line 486...
484
	/**
486
	/**
485
	 * Accesseur pour la toolbar de pagination
487
	 * Accesseur pour la toolbar de pagination
486
	 * 
488
	 * 
487
	 * @return la toolbar de pagination
489
	 * @return la toolbar de pagination
488
	 */
490
	 */
489
	public pageToolBarVue getToolBarVue() {
491
	public BarrePaginationVue getToolBarVue() {
490
		return bt;
492
		return bt;
491
	}
493
	}
Line 492... Line 494...
492
 
494
 
493
	/**
495
	/**