Subversion Repositories eFlore/Applications.del

Rev

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

Rev 349 Rev 358
Line 16... Line 16...
16
	private List<Image> images;
16
	private List<Image> images;
17
	private int numPageRechercheImage = 0;
17
	private int numPageRechercheImage = 0;
18
	private int nbTotalImagesRecherchees = 0;
18
	private int nbTotalImagesRecherchees = 0;
Line 19... Line 19...
19
 
19
 
20
	private int pasPagination = 10;
20
	private int pasPagination = 10;
-
 
21
	private int pageCouranteRechercheImage = 0;
21
	private int pageCouranteRecherche = 0;
22
	private int pageCouranteRechercheObservations = 0;
22
	private InformationsRecherche informationsRechercheImage;
23
	private InformationsRecherche informationsRechercheImage;
Line 23... Line 24...
23
	private InformationsRecherche informationsRechercheObservation;
24
	private InformationsRecherche informationsRechercheObservation;
Line 62... Line 63...
62
 
63
 
63
	public void setPasPagination(int pasPagination) {
64
	public void setPasPagination(int pasPagination) {
64
		this.pasPagination = pasPagination;
65
		this.pasPagination = pasPagination;
Line 65... Line 66...
65
	}
66
	}
66
 
67
 
67
	public void setPageCouranteRecherche(int pageCouranteRecherche) {
68
	public void setPageCouranteRechercheImages(int pageCouranteRecherche) {
Line 68... Line 69...
68
		this.pageCouranteRecherche = pageCouranteRecherche;
69
		this.pageCouranteRechercheImage = pageCouranteRecherche;
69
	}
70
	}
70
 
71
 
Line 71... Line 72...
71
	public int getPageCouranteRecherche() {
72
	public int getPageCouranteRechercheImage() {
72
		return this.pageCouranteRecherche;
73
		return this.pageCouranteRechercheImage;
73
	}
74
	}
Line 74... Line -...
74
 
-
 
75
	public List<Image> getImages() {
-
 
76
		return images;
-
 
77
	}
-
 
78
 
-
 
79
	public List<Image> getSousListeImages(int premiere, int derniere) {
75
 
Line 80... Line 76...
80
		if (derniere > images.size() - 1) {
76
	public List<Image> getImages() {
81
			derniere = images.size() - 1;
77
		return images;
82
		}
78
	}
Line 125... Line 121...
125
 
121
 
126
	public void setInformationsRechercheObservation(InformationsRecherche informationsRechercheObservation) {
122
	public void setInformationsRechercheObservation(InformationsRecherche informationsRechercheObservation) {
127
		this.informationsRechercheObservation = informationsRechercheObservation;
123
		this.informationsRechercheObservation = informationsRechercheObservation;
Line -... Line 124...
-
 
124
	}
-
 
125
 
-
 
126
	public int getPageCouranteRechercheObservations() {
-
 
127
		return pageCouranteRechercheObservations;
-
 
128
	}
-
 
129
 
-
 
130
	public void setPageCouranteRechercheObservations(int pageCouranteRechercheObservations) {
-
 
131
		this.pageCouranteRechercheObservations = pageCouranteRechercheObservations;
128
	}
132
	}