(Automatically generated from BeanInfo)
A java.awt.Component is returned, unless the user passes in a subclass of Component as the value argument, in which case the value argument is returned.
An example with l2fprod's property sheet:
dialog(title: "Configuration", id: "aboutConfigDialog", modal: true ) {
def pst = new PropertySheetTable()
bind(source:model, sourceProperty: 'propertyTableModel', target: pst, targetProperty:'model')
widget(new PropertySheetPanel(pst))
}
|