throw new IllegalStateException( "Need at least one property" );
}
TabbedDialogPage tabbedDialogPage = new TabbedDialogPage( tabId );
for ( final String property : properties ) {
tabbedDialogPage.addPage( new AbstractDialogPage( property, false ) {
@Override
protected JComponent createControl() {
return getBindingFactory().createBinding( property ).getControl();
}
} );