Subversion Repositories eFlore/Applications.del

Rev

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

Rev 263 Rev 311
Line 12... Line 12...
12
	private Image imageCourante;
12
	private Image imageCourante;
13
	private String taxonPourRechercheEflore;
13
	private String taxonPourRechercheEflore;
14
	private Protocole protocoleCourant;
14
	private Protocole protocoleCourant;
15
	private List<Image> images;
15
	private List<Image> images;
16
	private int numPageRechercheImage = 0;
16
	private int numPageRechercheImage = 0;
-
 
17
	
-
 
18
	private int pasPagination = 10;
17
	private int paginationPasRechercheImage = 10;
19
	private int pageCouranteRecherche = 0;
-
 
20
	private String especeRecherche = "";
-
 
21
	
18
	private static CacheClient instance;
22
	private static CacheClient instance;
Line 19... Line 23...
19
 
23
 
20
	private CacheClient() {
24
	private CacheClient() {
21
		instance = this;
25
		instance = this;
Line 46... Line 50...
46
 
50
 
47
	public int getNumPageRechercheImage() {
51
	public int getNumPageRechercheImage() {
48
		return numPageRechercheImage;
52
		return numPageRechercheImage;
Line -... Line 53...
-
 
53
	}
-
 
54
 
-
 
55
	//Pour la recherche  : 
-
 
56
	public int getPasPagination() {
-
 
57
		return pasPagination;
49
	}
58
	}
50
 
59
	
51
	public void setNumPageRechercheImage(int numPageRechercheImage) {
60
	public void setPasPagination(int pasPagination) {
52
		this.numPageRechercheImage = numPageRechercheImage;
61
		this.pasPagination = pasPagination;
53
	}
62
	}
54
 
63
	
-
 
64
	public String getEspeceRecherche() {
-
 
65
		return especeRecherche;
-
 
66
	}
-
 
67
	
55
	public int getPaginationPasRechercheImage() {
68
	public void setEspeceRecherche(String especeRecherche) {
56
		return paginationPasRechercheImage;
69
		this.especeRecherche = especeRecherche;
57
	}
70
	}
58
 
71
	
-
 
72
	public void setPageCouranteRecherche(int pageCouranteRecherche) {
-
 
73
		this.pageCouranteRecherche = pageCouranteRecherche;
-
 
74
	}
-
 
75
	
59
	public void setPaginationPasRerchercheImage(int paginationPas) {
76
	public int getPageCouranteRecherche() {
Line 60... Line 77...
60
		this.paginationPasRechercheImage = paginationPas;
77
		return this.pageCouranteRecherche;
61
	}
78
	}
62
 
79