OpenConcerto

Dépôt officiel du code source de l'ERP OpenConcerto
sonarqube

svn://code.openconcerto.org/openconcerto

Rev

Go to most recent revision | Details | Last modification | View Log | RSS feed

Rev Author Line No. Line
74 ilm 1
package org.openconcerto.modules.extensionbuilder.translation.action;
2
 
3
import org.openconcerto.modules.extensionbuilder.translation.Translation;
4
 
5
public class ActionTranslation extends Translation {
6
 
7
    private final String id;
8
    private String label;
9
 
10
    public ActionTranslation(String lang, String id) {
11
        super(lang);
12
        this.id = id;
13
    }
14
 
15
    public String getId() {
16
        return id;
17
    }
18
 
19
    public String getLabel() {
20
        return label;
21
    }
22
 
23
    public void setLabel(String label) {
24
        this.label = label;
25
    }
26
 
27
}