Component[] tabs = configPanel.getComponents();
for (int i = 0; i < tabs.length; i++) {
Component comp = tabs[i];
if (comp instanceof ValidatableTab) {
ValidatableTab tab = (ValidatableTab) comp;
tab.onSave();
}
}
}
protected TabPanel getConfigurationPanel() {