Subversion Repositories eFlore/Archives.cel-v2

Compare Revisions

Ignore whitespace Rev 45 → Rev 46

/trunk/src/org/tela_botanica/client/modeles/ImageCarnet.java
194,6 → 194,12
return XY ;
}
public String[] getNote()
{
String[] note = {renvoyerValeurCorrecte("ci_note_image") } ;
return note ;
}
/**
* Renvoie la date exif associée à l'image
* @return la date associée à l'image
336,10 → 342,10
* @param commentaires le nouveau commentaire
* @param date la nouvelle date
*/
public void miseAJourInfoGenerales(String commentaires, String date)
public void miseAJourInfoGenerales(String commentaires, String date, String note)
{
put("ci_meta_comment",commentaires) ;
put("ci_note_image",note) ;
put("ci_meta_date",date) ;
}
352,4 → 358,5
put("ci_meta_mots_cles",motsClesEnCours) ;
}
}