e1.printStackTrace();
}
final Component[] components = new Component[CAPTIONS.length];
for (int i = 0; i < components.length; i++) {
AbstractComponent comp = null;
try {
comp = compType.newInstance();
} catch (InstantiationException e) {
// TODO Auto-generated catch block
e.printStackTrace();
} catch (IllegalAccessException e) {
// TODO Auto-generated catch block
e.printStackTrace();
}
components[i] = comp;
comp.setCaption(CAPTIONS[i]);
if (useIcon) {
comp.setIcon(ICONS[i]);
}
if (ErrorMessage != null) {
if (ErrorMessage.length() == 0) {
comp.setComponentError(new UserError(null));
} else {
comp.setComponentError(new UserError(ErrorMessage));
}
}
// if component is a tab sheet add two tabs for it
if (comp instanceof TabSheet) {
comp.setSizeUndefined();
TabSheet tab = (TabSheet) comp;
tab.addTab(new UndefWideLabel("TAB1"), "TAB1",
new ThemeResource(GLOBE_16_PNG));
tab.addTab(new UndefWideLabel("TAB2"), "TAB2", null);
}