if (this._component instanceof ListView) {
ListView lv = (ListView)this._component;
lv.clearSelectedNodes();
for (DisplayNode node : value) {
lv.selectNode(node);
}
}
// TF:08/08/2009:Implemented for outline fields
else if (this._component instanceof OutlineField) {
OutlineField of = (OutlineField)this._component;