OpenConcerto

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

svn://code.openconcerto.org/openconcerto

Rev

Rev 57 | Show entire file | Regard whitespace | Details | Blame | Last modification | View Log | RSS feed

Rev 57 Rev 156
Line 23... Line 23...
23
import javax.swing.JTextField;
23
import javax.swing.JTextField;
24
 
24
 
25
public class NatureCompteSQLElement extends ComptaSQLConfElement {
25
public class NatureCompteSQLElement extends ComptaSQLConfElement {
26
 
26
 
27
    public NatureCompteSQLElement() {
27
    public NatureCompteSQLElement() {
28
        super("NATURE_COMPTE", "Nature du compte", "Nature du compte");
28
        super("NATURE_COMPTE", "une nature du compte", "natures du compte");
29
    }
29
    }
30
 
30
 
31
    protected List<String> getListFields() {
31
    protected List<String> getListFields() {
32
        final List<String> l = new ArrayList<String>();
32
        final List<String> l = new ArrayList<String>();
33
        l.add("NOM");
33
        l.add("NOM");
Line 53... Line 53...
53
        };
53
        };
54
    }
54
    }
55
 
55
 
56
    @Override
56
    @Override
57
    protected String createCode() {
57
    protected String createCode() {
58
        return createCodeFromPackage() + ".account.kind";
58
        return createCodeOfPackage() + ".account.kind";
59
    }
59
    }
60
}
60
}