Subversion Repositories eFlore/Applications.coel

Rev

Rev 1687 | Details | Compare with Previous | Last modification | View Log | RSS feed

Rev Author Line No. Line
591 gduche 1
package org.tela_botanica.client.interfaces;
2
 
3
/**
4
 * Toutes les classes qui affichent des listes  paginables
5
 * implémentent cette interface.
6
 * @author david delon
7
 *
8
 */
9
public interface ListePaginable {
10
 
11
	public void changerTaillePage(int nouvelleTaillePage);
12
	public void changerNumeroPage(int pageCourante);
659 gduche 13
	public void recharger();
1040 gduche 14
	public void filtrerParNom(String nom);
1687 raphael 15
	public void filtrerParNomEtPage(String nom, int pageCourante);
591 gduche 16
}