Examples of BookMarkExplorer


Examples of org.rssowl.ui.internal.views.explorer.BookMarkExplorer

    /* Reveal Newsmark of last opened News */
    reveal(lastOpenedNewsMark);
  }

  private void reveal(IFolderChild child) {
    BookMarkExplorer explorer = OwlUI.getOpenedBookMarkExplorer();
    if (explorer != null && child != null && !explorer.isLinkingEnabled())
      explorer.reveal(child, false);
  }
View Full Code Here

Examples of org.rssowl.ui.internal.views.explorer.BookMarkExplorer

      /* Actually archive selected news now into new Archive */
      archiveNews(archive);

      /* Select the Archive in the Feeds View */
      StructuredSelection selection = new StructuredSelection(archive);
      BookMarkExplorer explorer = OwlUI.getOpenedBookMarkExplorer();
      if (explorer != null)
        explorer.getViewSite().getSelectionProvider().setSelection(selection);

      /* Open the Archive */
      OwlUI.openInFeedView(OwlUI.getPage(), selection);
    }
  }
View Full Code Here

Examples of org.rssowl.ui.internal.views.explorer.BookMarkExplorer

    }

    private boolean navigateOnOpenExplorer() {

      /* Try finding the open Explorer for BookMarks */
      BookMarkExplorer bookmarkExplorer = OwlUI.getOpenedBookMarkExplorer();
      if (bookmarkExplorer == null)
        return false;

      /* Navigate on Explorer */
      bookmarkExplorer.navigate(fType.isNext(), fType.isUnread(), fType.performOnFeedView());

      return true; //Avoid navigation on Model if Explorer is Opened
    }
View Full Code Here
TOP
Copyright © 2018 www.massapi.com. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.