Subversion Repositories eFlore/Archives.cel-v2

Rev

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

Rev 43 Rev 46
Line 192... Line 192...
192
	{
192
	{
193
		String[] XY = { renvoyerValeurCorrecte("ci_meta_height") , renvoyerValeurCorrecte("ci_meta_width") } ;
193
		String[] XY = { renvoyerValeurCorrecte("ci_meta_height") , renvoyerValeurCorrecte("ci_meta_width") } ;
194
		return XY ;
194
		return XY ;
195
	}
195
	}
Line -... Line 196...
-
 
196
	
-
 
197
	public String[] getNote()
-
 
198
	{
-
 
199
		String[] note = {renvoyerValeurCorrecte("ci_note_image") } ;
-
 
200
		return note ;
-
 
201
	}
196
	
202
	
197
	/**		
203
	/**		
198
	 * Renvoie la date exif associée à l'image
204
	 * Renvoie la date exif associée à l'image
199
	 * @return la date associée à l'image
205
	 * @return la date associée à l'image
200
	 */
206
	 */
Line 334... Line 340...
334
	/**
340
	/**
335
	 * Met à jour le commenentaire et la date
341
	 * Met à jour le commenentaire et la date
336
	 * @param commentaires le nouveau commentaire
342
	 * @param commentaires le nouveau commentaire
337
	 * @param date la nouvelle date
343
	 * @param date la nouvelle date
338
	 */
344
	 */
339
	public void miseAJourInfoGenerales(String commentaires, String date)
345
	public void miseAJourInfoGenerales(String commentaires, String date, String note)
340
	{
346
	{
341
			put("ci_meta_comment",commentaires) ;
347
			put("ci_meta_comment",commentaires) ;
342
		
-
 
-
 
348
			put("ci_note_image",note) ;
343
			put("ci_meta_date",date) ;
349
			put("ci_meta_date",date) ;
344
	}
350
	}
Line 345... Line 351...
345
	
351
	
346
	/**
352
	/**
Line 350... Line 356...
350
	public void mettreAjourMotsCles(String motsClesEnCours) {
356
	public void mettreAjourMotsCles(String motsClesEnCours) {
Line 351... Line 357...
351
		
357
		
Line 352... Line 358...
352
		put("ci_meta_mots_cles",motsClesEnCours) ;
358
		put("ci_meta_mots_cles",motsClesEnCours) ;
-
 
359
		
353
		
360
	}