01: package fr.aliacom.form.common;
02:
03: import java.util.ArrayList;
04:
05: import fr.aliacom.common.ui.table.TableModel;
06:
07: public class TableLoader implements ILoader {
08:
09: private TableModel model;
10:
11: public TableLoader(TableModel model) {
12: this .model = model;
13: }
14:
15: public void load(Object value) {
16: model.setRows((ArrayList) value);
17: }
18:
19: }
|