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 | Regard whitespace | Details | Blame | Last modification | View Log | RSS feed

Rev 151 Rev 156
Line 38... Line 38...
38
import javax.swing.SwingUtilities;
38
import javax.swing.SwingUtilities;
39
 
39
 
40
import net.minidev.json.JSONObject;
40
import net.minidev.json.JSONObject;
41
 
41
 
42
public class LightRowValuesTableOnline extends LightRowValuesTable {
42
public class LightRowValuesTableOnline extends LightRowValuesTable {
43
    private final ITransformer<SQLSelect, SQLSelect> orginTransformer;
43
    private ITransformer<SQLSelect, SQLSelect> orginTransformer;
-
 
44
 
-
 
45
    public LightRowValuesTableOnline() {
-
 
46
        // Serialization
-
 
47
    }
44
 
48
 
45
    public LightRowValuesTableOnline(final Configuration configuration, final Number userId, final String id, final ITableModel model) {
49
    public LightRowValuesTableOnline(final Configuration configuration, final Number userId, final String id, final ITableModel model) {
46
        super(configuration, userId, id, model);
50
        super(configuration, userId, id, model);
47
 
51
 
48
        this.orginTransformer = ((SQLTableModelSourceOnline) model.getReq()).getReq().getSelectTransf();
52
        this.orginTransformer = ((SQLTableModelSourceOnline) model.getReq()).getReq().getSelectTransf();