TabContents currentTab = getCurrentTab();
if (currentTab != null) {
ISection[] sections = currentTab.getSections();
if (sections != null && sections.length > 0) {
ISection section = sections[0];
if (section instanceof ColumnViewSupport) {
ColumnViewSupport cvs = (ColumnViewSupport) section;
cvs.setSelectionProvider();
}
}