Subversion Repositories eFlore/Applications.del

Rev

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

Rev 14 Rev 73
Line 3... Line 3...
3
import org.tela_botanica.del.client.modeles.Observation;
3
import org.tela_botanica.del.client.modeles.Observation;
Line 4... Line 4...
4
 
4
 
Line 5... Line 5...
5
public class CacheClient {
5
public class CacheClient {
-
 
6
 
-
 
7
	private Observation currentObservation;
Line 6... Line 8...
6
 
8
	
Line 7... Line 9...
7
	private Observation currentObservation;
9
	private String taxonPourRechercheEflore;
8
 
10
 
Line 25... Line 27...
25
			instance = new CacheClient();
27
			instance = new CacheClient();
26
		}
28
		}
27
		return instance;
29
		return instance;
28
	}
30
	}
Line -... Line 31...
-
 
31
 
-
 
32
	public String getTaxonPourRechercheEflore() {
-
 
33
		return taxonPourRechercheEflore;
-
 
34
	}
-
 
35
 
-
 
36
	public void setTaxonPourRechercheEflore(String taxonPourRechercheEflore) {
-
 
37
		this.taxonPourRechercheEflore = taxonPourRechercheEflore;
-
 
38
	}
29
 
39