Subversion Repositories eFlore/Applications.del

Compare Revisions

Ignore whitespace Rev 177 → Rev 178

/src/org/tela_botanica/del/client/cache/CacheClient.java
4,6 → 4,7
 
import org.tela_botanica.del.client.modeles.Image;
import org.tela_botanica.del.client.modeles.Observation;
import org.tela_botanica.del.client.modeles.Protocole;
 
public class CacheClient {
 
12,6 → 13,8
private Image imageCourante;
 
private String taxonPourRechercheEflore;
private Protocole protocoleCourant;
 
private List<Image> images;
 
80,4 → 83,12
this.imageCourante = imageCourante;
}
 
public Protocole getProtocoleCourant() {
return protocoleCourant;
}
 
public void setProtocoleCourant(Protocole protocoleCourant) {
this.protocoleCourant = protocoleCourant;
}
 
}