Subversion Repositories eFlore/Applications.del

Rev

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

Rev 311 Rev 335
Line 1... Line 1...
1
package org.tela_botanica.del.client.cache;
1
package org.tela_botanica.del.client.cache;
Line 2... Line 2...
2
 
2
 
Line 3... Line 3...
3
import java.util.List;
3
import java.util.List;
-
 
4
 
4
 
5
import org.tela_botanica.del.client.modeles.Image;
5
import org.tela_botanica.del.client.modeles.Image;
6
import org.tela_botanica.del.client.modeles.InformationsRecherche;
Line 6... Line 7...
6
import org.tela_botanica.del.client.modeles.Observation;
7
import org.tela_botanica.del.client.modeles.Observation;
Line 15... Line 16...
15
	private List<Image> images;
16
	private List<Image> images;
16
	private int numPageRechercheImage = 0;
17
	private int numPageRechercheImage = 0;
Line 17... Line 18...
17
	
18
 
18
	private int pasPagination = 10;
19
	private int pasPagination = 10;
19
	private int pageCouranteRecherche = 0;
20
	private int pageCouranteRecherche = 0;
-
 
21
	private InformationsRecherche informationsRechercheImage;
Line 20... Line 22...
20
	private String especeRecherche = "";
22
	private InformationsRecherche informationsRechercheObservation;
Line 21... Line 23...
21
	
23
 
22
	private static CacheClient instance;
24
	private static CacheClient instance;
Line 59... Line 61...
59
	
61
 
60
	public void setPasPagination(int pasPagination) {
62
	public void setPasPagination(int pasPagination) {
61
		this.pasPagination = pasPagination;
63
		this.pasPagination = pasPagination;
Line 62... Line -...
62
	}
-
 
63
	
-
 
64
	public String getEspeceRecherche() {
-
 
65
		return especeRecherche;
-
 
66
	}
-
 
67
	
-
 
68
	public void setEspeceRecherche(String especeRecherche) {
-
 
69
		this.especeRecherche = especeRecherche;
-
 
70
	}
64
	}
71
	
65
 
72
	public void setPageCouranteRecherche(int pageCouranteRecherche) {
66
	public void setPageCouranteRecherche(int pageCouranteRecherche) {
Line 73... Line 67...
73
		this.pageCouranteRecherche = pageCouranteRecherche;
67
		this.pageCouranteRecherche = pageCouranteRecherche;
Line 106... Line 100...
106
 
100
 
107
	public void setProtocoleCourant(Protocole protocoleCourant) {
101
	public void setProtocoleCourant(Protocole protocoleCourant) {
108
		this.protocoleCourant = protocoleCourant;
102
		this.protocoleCourant = protocoleCourant;
Line -... Line 103...
-
 
103
	}
-
 
104
 
-
 
105
	public InformationsRecherche getInformationsRechercheImage() {
-
 
106
		return informationsRechercheImage;
-
 
107
	}
-
 
108
 
-
 
109
	public InformationsRecherche getInformationsRechercheObservation() {
-
 
110
		return informationsRechercheObservation;
-
 
111
	}
-
 
112
 
-
 
113
	public void setInformationsRechercheImage(InformationsRecherche informationsRechercheImage) {
-
 
114
		this.informationsRechercheImage = informationsRechercheImage;
-
 
115
	}
-
 
116
 
-
 
117
	public void setInformationsRechercheObservation(InformationsRecherche informationsRechercheObservation) {
-
 
118
		this.informationsRechercheObservation = informationsRechercheObservation;
109
	}
119
	}