Subversion Repositories eFlore/Applications.del

Compare Revisions

Regard whitespace Rev 334 → Rev 335

/trunk/src/org/tela_botanica/del/client/cache/CacheClient.java
3,6 → 3,7
import java.util.List;
 
import org.tela_botanica.del.client.modeles.Image;
import org.tela_botanica.del.client.modeles.InformationsRecherche;
import org.tela_botanica.del.client.modeles.Observation;
import org.tela_botanica.del.client.modeles.Protocole;
 
17,7 → 18,8
private int pasPagination = 10;
private int pageCouranteRecherche = 0;
private String especeRecherche = "";
private InformationsRecherche informationsRechercheImage;
private InformationsRecherche informationsRechercheObservation;
private static CacheClient instance;
 
61,14 → 63,6
this.pasPagination = pasPagination;
}
public String getEspeceRecherche() {
return especeRecherche;
}
public void setEspeceRecherche(String especeRecherche) {
this.especeRecherche = especeRecherche;
}
public void setPageCouranteRecherche(int pageCouranteRecherche) {
this.pageCouranteRecherche = pageCouranteRecherche;
}
108,4 → 102,20
this.protocoleCourant = protocoleCourant;
}
 
public InformationsRecherche getInformationsRechercheImage() {
return informationsRechercheImage;
}
 
public InformationsRecherche getInformationsRechercheObservation() {
return informationsRechercheObservation;
}
 
public void setInformationsRechercheImage(InformationsRecherche informationsRechercheImage) {
this.informationsRechercheImage = informationsRechercheImage;
}
 
public void setInformationsRechercheObservation(InformationsRecherche informationsRechercheObservation) {
this.informationsRechercheObservation = informationsRechercheObservation;
}
 
}