Ignore:
Timestamp:
Feb 27, 2011, 1:38:04 PM (13 years ago)
Author:
mlg
Message:

Changes function name (to english)
version changed to 0.13.1

File:
1 edited

Legend:

Unmodified
Added
Removed
  • extensions/jiwigo-ws-api/src/main/java/fr/mael/jiwigo/om/Tag.java

    r9387 r9392  
    3636     * Name of the tag
    3737     */
    38     private String nom;
     38    private String name;
    3939
    4040    /**
    4141     * Id of the tag
    4242     */
    43     private Integer identifiant;
     43    private Integer identifier;
    4444
    45     /**
    46      * @return the nom
    47      */
    48     public String getNom() {
    49         return nom;
     45    public String getName() {
     46        return name;
    5047    }
    5148
    52     /**
    53      * @param nom the nom to set
    54      */
    55     public void setNom(String nom) {
    56         this.nom = nom;
     49    public void setName(String name) {
     50        this.name = name;
    5751    }
    5852
    59     /**
    60      * @return the id
    61      */
    62     public Integer getId() {
    63         return identifiant;
     53    public Integer getIdentifier() {
     54        return identifier;
    6455    }
    6556
    66     /**
    67      * @param id the id to set
    68      */
    69     public void setId(Integer id) {
    70         this.identifiant = id;
     57    public void setIdentifier(Integer identifier) {
     58        this.identifier = identifier;
    7159    }
    7260
     
    7462    public String toString() {
    7563        // TODO Auto-generated method stub
    76         return nom;
     64        return name;
    7765    }
    7866}
Note: See TracChangeset for help on using the changeset viewer.