if ((this.value == null) || (this.value.size() == 0)) {
return;
}
for (Iterator it = this.value.iterator(); it.hasNext();) {
Introspectable o = (Introspectable) it.next();
BoundWidget w = this.getFactory().getWidgetProvider(Introspector.INSTANCE.resolveClass(o)).get();
w.setModel(o);
ActionProvider ap = this.getActionFactory().getActionProvider(Introspector.INSTANCE.resolveClass(w));