BundleContentPage contentsPage = (BundleContentPage) editor.setActivePage(BndEditor.CONTENT_PAGE);
if (contentsPage != null) {
contentsPage.setSelectedImport((ImportPattern) element);
}
} else if (element instanceof PluginClause) {
WorkspacePage workspacePage = (WorkspacePage) editor.setActivePage(BndEditor.WORKSPACE_PAGE);
if (workspacePage != null)
workspacePage.setSelectedPlugin(((PluginClause) element).header);
}
}
});
viewer.setInput(model);