OpenConcerto

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

svn://code.openconcerto.org/openconcerto

Rev

Rev 18 | Rev 156 | Go to most recent revision | Show entire file | Regard whitespace | Details | Blame | Last modification | View Log | RSS feed

Rev 18 Rev 57
Line 11... Line 11...
11
 * When distributing the software, include this License Header Notice in each file.
11
 * When distributing the software, include this License Header Notice in each file.
12
 */
12
 */
13
 
13
 
14
 package org.openconcerto.erp.core.humanresources.payroll.element;
14
 package org.openconcerto.erp.core.humanresources.payroll.element;
15
 
15
 
16
 
-
 
17
public class CodeIdccSQLElement extends AbstractCodeSQLElement {
16
public class CodeIdccSQLElement extends AbstractCodeSQLElement {
18
 
17
 
19
    public CodeIdccSQLElement() {
18
    public CodeIdccSQLElement() {
20
        super("IDCC", "un code de convention", "codes de conventions");
19
        super("IDCC", "un code de convention", "codes de conventions");
21
    }
20
    }
22
 
21
 
-
 
22
    @Override
-
 
23
    protected String createCode() {
-
 
24
        return createCodeFromPackage() + ".conventions.code";
-
 
25
    }
23
}
26
}