}
private boolean navigateOnActiveFeedView() {
/* Get active FeedView if any */
FeedView activeFeedView = OwlUI.getActiveFeedView();
/* Run on active FeedView if any */
if (activeFeedView != null) {
boolean success = activeFeedView.navigate(true, false, fType.isNext(), fType.isUnread());
/* For unread & next news, consider all news of the active feed */
if (!success && fType.isNewsScoped() && fType.isUnread() && fType.isNext())
success = activeFeedView.navigate(false, false, fType.isNext(), fType.isUnread());
if (success) {
IWorkbenchPage page = activeFeedView.getSite().getPage();
page.activate(activeFeedView.getSite().getPart());
page.activate(activeFeedView);
return true;
}
}