Subversion Repositories eFlore/Applications.coel

Rev

Rev 659 | Go to most recent revision | Details | 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);
13
 
14
 
15
}