Examples of navigate()


Examples of org.rssowl.ui.internal.editors.feed.FeedView.navigate()

      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);
View Full Code Here

Examples of org.rssowl.ui.internal.editors.feed.FeedView.navigate()

      /* Get active FeedView if any */
      FeedView activeFeedView = OwlUI.getActiveFeedView();

      /* Run on active FeedView if any */
      if (fType.isNewsScoped() && activeFeedView != null) {
        if (activeFeedView.navigate(true, fType.isNewsScoped(), fType.isNext(), fType.isUnread())) {
          IWorkbenchPage page = activeFeedView.getSite().getPage();
          page.activate(activeFeedView.getSite().getPart());
          page.activate(activeFeedView);

          return true;
View Full Code Here

Examples of org.rssowl.ui.internal.views.explorer.BookMarkExplorer.navigate()

      BookMarkExplorer bookmarkExplorer = OwlUI.getOpenedBookMarkExplorer();
      if (bookmarkExplorer == null)
        return false;

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

      return true; //Avoid navigation on Model if Explorer is Opened
    }

    private boolean navigateOnModel() {
View Full Code Here

Examples of org.rssowl.ui.internal.views.explorer.BookMarkExplorer.navigate()

      BookMarkExplorer bookmarkExplorer = OwlUI.getOpenBookMarkExplorer();
      if (bookmarkExplorer == null)
        return false;

      /* Navigate on Explorer */
      if (bookmarkExplorer.navigate(fType.isNewsScoped(), fType.isNext(), fType.isUnread()))
        return true;

      return false;
    }

View Full Code Here

Examples of org.rstudio.core.client.widget.AnchorableFrame.navigate()

            onClosed.execute();
         }
      });
     
      // load the frame and show the zoom panel
      frame.navigate(url);
      activeZoomPanel_.center()
   }
  
   @Override
   public void clear()
View Full Code Here

Examples of org.rstudio.core.client.widget.AnchorableFrame.navigate()

      Element el = frame.getElement();
      el.setAttribute("webkitallowfullscreen", "");
      el.setAttribute("mozallowfullscreen", "");
      el.setAttribute("allowfullscreen", "");
     
      frame.navigate(url);
     
      final Operation initSlides = new Operation()
      {
         @Override
         public void execute()
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.