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/om/Tag.java

    r6968 r6980  
    11package fr.mael.jiwigo.om;
    2 
    3 import org.jdom.Element;
    4 
    5 import fr.mael.jiwigo.transverse.enumeration.TagEnum;
    62
    73/**
     
    4642
    4743    /**
    48      * Empty constructor
    49      */
    50     public Tag() {
    51     }
    52 
    53     /**
    54      * @param element the element in the RPC response
    55      */
    56     public Tag(Element element) {
    57         this.identifiant = Integer.valueOf(element.getAttributeValue(TagEnum.ID.getLabel()));
    58         this.nom = element.getAttributeValue(TagEnum.NAME.getLabel());
    59     }
    60 
    61     /**
    62      * @param nom the name of the tag
    63      */
    64     public Tag(String nom) {
    65         this.nom = nom;
    66     }
    67 
    68     /**
    6944     * @return the nom
    7045     */
Note: See TracChangeset for help on using the changeset viewer.