OpenConcerto

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

svn://code.openconcerto.org/openconcerto

Rev

Rev 151 | Rev 174 | Go to most recent revision | Show entire file | Ignore whitespace | Details | Blame | Last modification | View Log | RSS feed

Rev 151 Rev 156
Line 42... Line 42...
42
import javax.swing.event.DocumentListener;
42
import javax.swing.event.DocumentListener;
43
 
43
 
44
public class InfosSalariePayeSQLElement extends ComptaSQLConfElement {
44
public class InfosSalariePayeSQLElement extends ComptaSQLConfElement {
45
 
45
 
46
    public InfosSalariePayeSQLElement() {
46
    public InfosSalariePayeSQLElement() {
47
        super("INFOS_SALARIE_PAYE", "des informations salarié-paye", "informations salariés-payes");
47
        super("INFOS_SALARIE_PAYE", "une fiche d'informations salarié-paye", "fiches d'informations salariés-payes");
48
    }
48
    }
49
 
49
 
50
    @Override
50
    @Override
51
    public boolean isPrivate() {
51
    public boolean isPrivate() {
52
        return true;
52
        return true;
Line 510... Line 510...
510
        };
510
        };
511
    }
511
    }
512
 
512
 
513
    @Override
513
    @Override
514
    protected String createCode() {
514
    protected String createCode() {
515
        return createCodeFromPackage() + ".info";
515
        return createCodeOfPackage() + ".info";
516
    }
516
    }
517
}
517
}