Subversion Repositories eFlore/Applications.cel

Rev

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

Rev 79 Rev 83
Line 53... Line 53...
53
		this.nomRetenu = nomRetenu;
53
		this.nomRetenu = nomRetenu;
54
		this.numeroNomenclaturalSaisi = numeroNomenclaturalSaisi;
54
		this.numeroNomenclaturalSaisi = numeroNomenclaturalSaisi;
55
		this.numeroNomenclaturalRetenu = numeroNomenclaturalRetenu;
55
		this.numeroNomenclaturalRetenu = numeroNomenclaturalRetenu;
56
		this.numeroTaxonomique = numeroTaxonomique;
56
		this.numeroTaxonomique = numeroTaxonomique;
57
		this.famille = famille;
57
		this.famille = famille;
58
		this.localite = localite;
-
 
-
 
58
		
59
		this.identifiantLocalite = identifiantLocalite;		
59
		this.identifiantLocalite = identifiantLocalite;		
60
		this.lieudit = lieudit;
60
		this.lieudit = lieudit;
61
		this.station = station;
61
		this.station = station;
62
		this.milieu = milieu;
62
		this.milieu = milieu;
63
		this.commentaire = commentaire;
63
		this.commentaire = commentaire;
64
		this.date = date;
64
		this.date = date;
65
		this.numeroOrdre = numeroOrdre;
65
		this.numeroOrdre = numeroOrdre;
Line -... Line 66...
-
 
66
		
-
 
67
		 // Suppresion indication departementale (on pourrait faire mieux !!)
-
 
68
		int pos=localite.indexOf(" (" );
-
 
69
	    if (pos>=0) {
-
 
70
	    	this.localite=localite.substring(0,pos);
-
 
71
	    }
-
 
72
		else {
-
 
73
			 this.localite=localite;
-
 
74
		}
-
 
75
		 
66
		
76
		
Line 67... Line 77...
67
	}
77
	}
68
 
78
 
Line 84... Line 94...
84
	
94
	
Line 85... Line 95...
85
	public Observation(String nomSaisi, String numeroNomenclaturalSaisi,   String localite, String identifiantLocalite, String lieudit, String station, String milieu, String commentaire, String date) {
95
	public Observation(String nomSaisi, String numeroNomenclaturalSaisi,   String localite, String identifiantLocalite, String lieudit, String station, String milieu, String commentaire, String date) {
86
		
96
		
87
		this.nomSaisi = nomSaisi;
-
 
-
 
97
		this.nomSaisi = nomSaisi;
88
		this.numeroNomenclaturalSaisi = numeroNomenclaturalSaisi;
98
		this.numeroNomenclaturalSaisi = numeroNomenclaturalSaisi;
89
		this.localite = localite;
99
		
90
		this.identifiantLocalite = identifiantLocalite;		
100
		this.identifiantLocalite = identifiantLocalite;		
91
		this.lieudit = lieudit;
101
		this.lieudit = lieudit;
92
		this.station = station;
102
		this.station = station;
93
		this.milieu = milieu;
103
		this.milieu = milieu;
Line -... Line 104...
-
 
104
		this.commentaire = commentaire;
-
 
105
		this.date = date;
-
 
106
		
-
 
107
		 // Suppresion indication departementale (on pourrait faire mieux !!)
-
 
108
		int pos=localite.indexOf(" (" );
-
 
109
	    if (pos>=0) {
-
 
110
	    	this.localite=localite.substring(0,pos);
-
 
111
	    }
-
 
112
		else {
94
		this.commentaire = commentaire;
113
			 this.localite=localite;
Line 95... Line 114...
95
		this.date = date;
114
		}
96
		
115