OpenConcerto

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

svn://code.openconcerto.org/openconcerto

Rev

Rev 151 | Show entire file | Ignore whitespace | Details | Blame | Last modification | View Log | RSS feed

Rev 151 Rev 156
Line 40... Line 40...
40
    public static final int VIREMENT = 8;
40
    public static final int VIREMENT = 8;
41
    public static final int CESU = 9;
41
    public static final int CESU = 9;
42
    public static final int PRELEVEMENT = 10;
42
    public static final int PRELEVEMENT = 10;
43
 
43
 
44
    public TypeReglementSQLElement() {
44
    public TypeReglementSQLElement() {
45
        super("TYPE_REGLEMENT", "Type de règlement", "Type de règlement");
45
        super("TYPE_REGLEMENT", "un type de règlement", "types de règlement");
46
    }
46
    }
47
 
47
 
48
    protected List<String> getListFields() {
48
    protected List<String> getListFields() {
49
        final List<String> l = new ArrayList<String>();
49
        final List<String> l = new ArrayList<String>();
50
        l.add("NOM");
50
        l.add("NOM");
Line 112... Line 112...
112
        };
112
        };
113
    }
113
    }
114
 
114
 
115
    @Override
115
    @Override
116
    protected String createCode() {
116
    protected String createCode() {
117
        return createCodeFromPackage() + ".type";
117
        return createCodeOfPackage() + ".type";
118
    }
118
    }
119
}
119
}