public OutlookBarPane createOutlookBarItem(VTab tab, String name) {
name = getLabel(name);
Composite parent = tab.getGroup(name);
parent.setLayout(new FillLayout());
OutlookBarPane comp = new OutlookBarPane(parent);
tab.addItem(name, comp);
return comp;
}