perform.setActivate(false);
/* Open this Bookmark */
FeedViewInput fvInput = new FeedViewInput(bookmark, perform);
try {
FeedView feedview = null;
/* First check if input already shown */
IEditorPart existingEditor = page.findEditor(fvInput);
if (existingEditor != null && existingEditor instanceof FeedView) {
feedview = (FeedView) existingEditor;
/* Set Selection */
feedview.setSelection(new StructuredSelection(news));
}
/* Otherwise open the Input in a new Editor */
else
feedview = (FeedView) page.openEditor(fvInput, FeedView.ID, true);