Subversion Repositories eFlore/Applications.cel

Rev

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

Rev 257 Rev 965
Line 1... Line 1...
1
package org.tela_botanica.client.modeles;
1
package org.tela_botanica.client.modeles;
Line 2... Line 2...
2
 
2
 
3
/**
3
/**
4
 * 
4
 * 
5
 * Classe representant une idLocalite geographique (localite, commune, lieu dit) presente dans la liste des observations
5
 * Classe representant une idZoneGeo geographique (localite, zoneGeo, lieu dit) presente dans la liste des observations
6
 * 
6
 * 
Line 7... Line 7...
7
 */
7
 */
Line 8... Line 8...
8
 
8
 
9
public class EntiteGeographiqueObservation {
9
public class EntiteGeographiqueObservation {
10
 
10
 
11
 
11
 
12
	
12
	
13
	private String idLocalite=null;
13
	private String idZoneGeo=null;
Line 23... Line 23...
23
	public EntiteGeographiqueObservation() {
23
	public EntiteGeographiqueObservation() {
24
	}
24
	}
Line 25... Line 25...
25
 
25
 
26
	
26
	
27
	/**
27
	/**
28
	 * @param commune
28
	 * @param zoneGeo
Line 29... Line 29...
29
	 * @param departement
29
	 * @param departement
Line 30... Line 30...
30
	 */
30
	 */
31
	
31
	
32
	public EntiteGeographiqueObservation(String idLocalite, String commune, String lieuDit, String station) {
32
	public EntiteGeographiqueObservation(String idZoneGeo, String zoneGeo, String lieuDit, String station) {
33
		
33
		
Line 34... Line 34...
34
		this.idLocalite = idLocalite;
34
		this.idZoneGeo = idZoneGeo;
Line 52... Line 52...
52
	
52
	
53
	public String getLon() {
53
	public String getLon() {
54
		return lon;
54
		return lon;
Line 55... Line 55...
55
	}
55
	}
56
 
56
 
57
	public String getIdLocalite() {
57
	public String getIdZoneGeo() {
Line 58... Line 58...
58
		return idLocalite;
58
		return idZoneGeo;
59
	}
59
	}
60
 
60
 
Line 61... Line 61...
61
 
61
 
62
	public String getCommune() {
62
	public String getZoneGeo() {
63
		return commune;
63
		return zoneGeo;
Line 64... Line 64...
64
	}
64
	}
65
 
65
 
66
 
66
 
67
	public String getLieuDit() {
-
 
68
		return lieuDit;
-
 
69
	}
-
 
70
	
-
 
71
	public String getStation() {
67
	public String getLieuDit() {