OpenConcerto

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

svn://code.openconcerto.org/openconcerto

Rev

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

Rev 156 Rev 177
Line 81... Line 81...
81
    public void setThunderbirdPath(String text) {
81
    public void setThunderbirdPath(String text) {
82
        this.setProperty("thunderbird.path", text);
82
        this.setProperty("thunderbird.path", text);
83
    }
83
    }
84
 
84
 
85
    public int getMode() {
85
    public int getMode() {
86
        return this.getIntProperty("mode");
86
        return this.getIntProperty("mode", DEFAULT);
87
    }
87
    }
88
 
88
 
89
    public void setMode(int mode) {
89
    public void setMode(int mode) {
90
        this.setProperty("mode", String.valueOf(mode));
90
        this.setProperty("mode", String.valueOf(mode));
91
    }
91
    }
Line 124... Line 124...
124
        if (tmp.trim().length() > 0) {
124
        if (tmp.trim().length() > 0) {
125
            charset = tmp;
125
            charset = tmp;
126
        }
126
        }
127
        return charset;
127
        return charset;
128
    }
128
    }
129
 
-
 
130
    @Override
-
 
131
    protected int getDefautIntValue() {
-
 
132
        return DEFAULT;
-
 
133
    }
-
 
134
 
-
 
135
}
129
}