Subversion Repositories eFlore/Applications.del

Compare Revisions

Ignore whitespace Rev 310 → Rev 311

/trunk/src/org/tela_botanica/del/client/cache/CacheClient.java
14,7 → 14,11
private Protocole protocoleCourant;
private List<Image> images;
private int numPageRechercheImage = 0;
private int paginationPasRechercheImage = 10;
private int pasPagination = 10;
private int pageCouranteRecherche = 0;
private String especeRecherche = "";
private static CacheClient instance;
 
private CacheClient() {
48,17 → 52,30
return numPageRechercheImage;
}
 
public void setNumPageRechercheImage(int numPageRechercheImage) {
this.numPageRechercheImage = numPageRechercheImage;
//Pour la recherche :
public int getPasPagination() {
return pasPagination;
}
 
public int getPaginationPasRechercheImage() {
return paginationPasRechercheImage;
public void setPasPagination(int pasPagination) {
this.pasPagination = pasPagination;
}
 
public void setPaginationPasRerchercheImage(int paginationPas) {
this.paginationPasRechercheImage = paginationPas;
public String getEspeceRecherche() {
return especeRecherche;
}
public void setEspeceRecherche(String especeRecherche) {
this.especeRecherche = especeRecherche;
}
public void setPageCouranteRecherche(int pageCouranteRecherche) {
this.pageCouranteRecherche = pageCouranteRecherche;
}
public int getPageCouranteRecherche() {
return this.pageCouranteRecherche;
}
 
public List<Image> getImages() {
return images;