Subversion Repositories eFlore/Applications.cel

Rev

Rev 360 | Show entire file | Ignore whitespace | Details | Blame | Last modification | View Log | RSS feed

Rev 360 Rev 382
Line 64... Line 64...
64
		this.commentaire = commentaire;
64
		this.commentaire = commentaire;
65
		this.date = date;
65
		this.date = date;
66
		this.numeroOrdre = numeroOrdre;
66
		this.numeroOrdre = numeroOrdre;
Line 67... Line 67...
67
		
67
		
-
 
68
		 // Suppresion indication departementale (on pourrait faire mieux !!)
68
		 // Suppresion indication departementale (on pourrait faire mieux !!)
69
		if(localite != null) {
69
		int pos=localite.indexOf(" (" );
70
			int pos=localite.indexOf(" (" );
70
	    if (pos>=0) {
71
			if (pos>=0) {
71
	    	this.localite=localite.substring(0,pos);
72
	    	this.localite=localite.substring(0,pos);
72
	    }
73
			}
73
		else {
74
			else {
-
 
75
			 this.localite=localite;
74
			 this.localite=localite;
76
			}
75
		}
-
 
76
	    
77
		}
Line 77... Line 78...
77
	    this.motsCles = "";
78
	    this.motsCles = "";
78
		 
-
 
79
		
-
 
80
	}
-
 
81
	
-
 
82
	/**
-
 
83
	 * Une observation telle que stockee dans la base de donnee avec les mots clés
-
 
84
	 * 
-
 
85
	 * @param transmis
-
 
86
	 * @param nomSaisi
-
 
87
	 * @param nomRetenu
-
 
88
	 * @param numeroNomenclaturalSaisi
-
 
89
	 * @param numeroNomenclaturalRetenu
-
 
90
	 * @param numeroTaxonomique
-
 
91
	 * @param famille
-
 
92
	 * @param localite
-
 
93
	 * @param IdentifiantLocalite
-
 
94
	 * @param lieudit
-
 
95
	 * @param station
-
 
96
	 * @param milieu
-
 
97
	 * @param commentaire
-
 
98
	 * @param date
-
 
99
	 * @param numeroOrdre
-
 
100
	 * @param motsCles
-
 
101
	 */
-
 
102
	public Observation(String transmis, String nomSaisi, String nomRetenu, String numeroNomenclaturalSaisi,  String numeroNomenclaturalRetenu, String numeroTaxonomique, String famille, String localite, String identifiantLocalite, String lieudit, String station, String milieu, String commentaire, String date, String numeroOrdre, String motsCles) {
-
 
103
		
-
 
104
		this.transmis = transmis;
-
 
105
		this.nomSaisi = nomSaisi;
-
 
106
		this.nomRetenu = nomRetenu;
-
 
107
		this.numeroNomenclaturalSaisi = numeroNomenclaturalSaisi;
-
 
108
		this.numeroNomenclaturalRetenu = numeroNomenclaturalRetenu;
-
 
109
		this.numeroTaxonomique = numeroTaxonomique;
-
 
110
		this.famille = famille;
-
 
111
		
-
 
112
		this.identifiantLocalite = identifiantLocalite;		
-
 
113
		this.lieudit = lieudit;
-
 
114
		this.station = station;
-
 
115
		this.milieu = milieu;
-
 
116
		this.commentaire = commentaire;
-
 
117
		this.date = date;
-
 
118
		this.numeroOrdre = numeroOrdre;
-
 
119
		
-
 
120
		 // Suppresion indication departementale (on pourrait faire mieux !!)
-
 
121
		int pos=localite.indexOf(" (" );
-
 
122
	    if (pos>=0) {
-
 
123
	    	this.localite=localite.substring(0,pos);
-
 
124
	    }
-
 
125
		else {
-
 
126
			 this.localite=localite;
-
 
127
		}
-
 
128
	    
-
 
129
	    this.motsCles = motsCles;
-
 
Line 130... Line 79...
130
		 
79
		 
131
		
80
		
132
	}
81
	}