OpenConcerto

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

svn://code.openconcerto.org/openconcerto

Rev

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

Rev 181 Rev 183
Line 132... Line 132...
132
        });
132
        });
133
 
133
 
134
    }
134
    }
135
 
135
 
136
    @Override
136
    @Override
137
    public void process(List<SQLRowValues> r) throws SQLException {
137
    public void process(List<SQLRowAccessor> r) throws SQLException {
138
        if (bReplace.isSelected()) {
138
        if (bReplace.isSelected()) {
139
            final String t = ensureSize(tReplace.getText());
139
            final String t = ensureSize(tReplace.getText());
140
            for (SQLRowAccessor sqlRowAccessor : r) {
140
            for (SQLRowAccessor sqlRowAccessor : r) {
141
                final SQLRowValues rowValues = sqlRowAccessor.createEmptyUpdateRow();
141
                final SQLRowValues rowValues = sqlRowAccessor.createEmptyUpdateRow();
142
                rowValues.put(field.getName(), t);
142
                rowValues.put(field.getName(), t);