Subversion Repositories eFlore/Applications.del

Rev

Rev 73 | Go to most recent revision | Show entire file | Ignore whitespace | Details | Blame | Last modification | View Log | RSS feed

Rev 73 Rev 147
Line 1... Line 1...
1
package org.tela_botanica.del.client.cache;
1
package org.tela_botanica.del.client.cache;
Line -... Line 2...
-
 
2
 
-
 
3
import java.util.List;
-
 
4
 
2
 
5
import org.tela_botanica.del.client.modeles.Image;
Line 3... Line 6...
3
import org.tela_botanica.del.client.modeles.Observation;
6
import org.tela_botanica.del.client.modeles.Observation;
Line 4... Line 7...
4
 
7
 
Line -... Line 8...
-
 
8
public class CacheClient {
-
 
9
 
5
public class CacheClient {
10
	private Observation currentObservation;
Line -... Line 11...
-
 
11
	
-
 
12
	private Image imageCourante;
-
 
13
 
-
 
14
	private String taxonPourRechercheEflore;
-
 
15
 
-
 
16
	private List<Image> images;
6
 
17
 
Line 7... Line 18...
7
	private Observation currentObservation;
18
	private int numPageRechercheImage = 0;
8
	
19
 
9
	private String taxonPourRechercheEflore;
20
	private int pasPageRechercheImage = 10;
Line 35... Line 46...
35
 
46
 
36
	public void setTaxonPourRechercheEflore(String taxonPourRechercheEflore) {
47
	public void setTaxonPourRechercheEflore(String taxonPourRechercheEflore) {
37
		this.taxonPourRechercheEflore = taxonPourRechercheEflore;
48
		this.taxonPourRechercheEflore = taxonPourRechercheEflore;
Line -... Line 49...
-
 
49
	}
-
 
50
 
-
 
51
	public int getNumPageRechercheImage() {
-
 
52
		return numPageRechercheImage;
-
 
53
	}
-
 
54
 
-
 
55
	public void setNumPageRechercheImage(int numPageRechercheImage) {
-
 
56
		this.numPageRechercheImage = numPageRechercheImage;
-
 
57
	}
-
 
58
 
-
 
59
	public int getPasPageRechercheImage() {
-
 
60
		return pasPageRechercheImage;
-
 
61
	}
-
 
62
 
-
 
63
	public void setPasPageRechercheImage(int pasPageRechercheImage) {
-
 
64
		this.pasPageRechercheImage = pasPageRechercheImage;
-
 
65
	}
-
 
66
 
-
 
67
	public List<Image> getImages() {
-
 
68
		return images;
-
 
69
	}
-
 
70
 
-
 
71
	public void setImages(List<Image> images) {
-
 
72
		this.images = images;
-
 
73
	}
-
 
74
 
-
 
75
	public Image getImageCourante() {
-
 
76
		return imageCourante;
-
 
77
	}
-
 
78
 
-
 
79
	public void setImageCourante(Image imageCourante) {
-
 
80
		this.imageCourante = imageCourante;
38
	}
81
	}