Hi Manuel,
Thanks for your suggestions to my problem. It got me thinking more about
how to do this from java and finally found the solution. I'm sure the java
could be compacted a bit but it works!
AbstractDatatypeWidgetDefinition widgetDef =
(AbstractDatatypeWidgetDefinition) myWidget.getDefinition();
StaticSelectionList selList = (StaticSelectionList)
widgetDef.getSelectionList();
List selListItems = selList.getItems();
for (int i=0; i < selListItems.size(); i++) {
StaticSelectionList.SelectionListItem selListItem =
(StaticSelectionList.SelectionListItem) selListItems.get(i);
MyClass value = (MyClass) selListItem.getValue();
}
gary
---------------------------------------------------------------------
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]