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/service/CommentService.java

    r6821 r6980  
    5050
    5151    /**
    52      * @return le singleton
     52     * @return the singleton
    5353     */
    5454    public static CommentService getInstance() {
     
    6060
    6161    /**
    62      * Constructeur privé, pour n'avoir accès qu'au singleton
     62     * private constructor, to use a singleton
    6363     */
    6464    private CommentService() {
     
    6767
    6868    /**
    69      * Listing des commentaires pour une image
    70      * @param imageId id de l'image
    71      * @return la liste des commentaires
     69     * Lists all comments for an image
     70     * @param imageId the id of the image
     71     * @return the list of comments
    7272     * @throws IOException
    7373     */
     
    7676    }
    7777
     78    /**
     79     * Creates a comment for an image
     80     * @param content the comment
     81     * @param imageId the id of the image
     82     * @param auteur the author of the comment
     83     * @return true if successful
     84     * @throws IOException
     85     */
    7886    public boolean creer(String content, Integer imageId, String auteur) throws IOException {
    7987        Comment commentaire = new Comment();
Note: See TracChangeset for help on using the changeset viewer.