Ignore:
Timestamp:
Sep 20, 2010, 8:51:41 PM (14 years ago)
Author:
mlg
Message:

Translation of the comments
French -> English

File:
1 edited

Legend:

Unmodified
Added
Removed
  • extensions/jiwigo/trunk/src/main/java/fr/mael/jiwigo/dao/CommentDao.java

    r6821 r6980  
    3939   SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
    4040   
    41  * Dao des commentaires
     41 * Dao for the comments
    4242 * @author mael
    4343 *
     
    5050            .getLog(CommentDao.class);
    5151    /**
    52      *  Instance qui permet d'utiliser un singleton
     52     *  Instance that allows to use a singleton
    5353     */
    5454    private static CommentDao instance;
    5555
    5656    /**
    57      * Constructeur privé, pour n'avoir accès qu'au singleton
     57     * private constructor, to use a singleton
    5858     */
    5959    private CommentDao() {
     
    6262
    6363    /**
    64      * @return le singleton
     64     * @return the singleton
    6565     */
    6666    public static CommentDao getInstance() {
     
    7272
    7373    /**
    74      * Listing des commentaires pour une image donnée
    75      * @param idImage identifiant de l'image
    76      * @return liste des commentaires
     74     * Listing of the comments for the given image
     75     * @param idImage id of the  image
     76     * @return list of comments
    7777     * @throws IOException
    7878     */
     
    9595
    9696    /**
    97      * Recupération de la clé pour l'ajout d'un com
    98      * @param idImage
    99      * @return
     97     * Gets the key essential to add a comment
     98     * @param idImage the id of the image
     99     * @return the key
    100100     * @throws IOException
    101101     */
     
    107107    }
    108108
     109    /**
     110     * Creates a comment
     111     * @param commentaire the comment to add
     112     * @return true if the comment is successfully added
     113     * @throws IOException
     114     */
    109115    public boolean creer(Comment commentaire) throws IOException {
    110116        String key = getKey(commentaire.getImageId());
Note: See TracChangeset for help on using the changeset viewer.