Examples of IHistoryPage


Examples of org.eclipse.team.ui.history.IHistoryPage

    }

    if (adaptableObject instanceof IHistoryView
        && IShowInSource.class == adapterType) {
      IHistoryView historyView = (IHistoryView) adaptableObject;
      IHistoryPage historyPage = historyView.getHistoryPage();
      if (historyPage instanceof GitHistoryPage)
        return historyPage;
    }

    if (adaptableObject instanceof GitModelObject
View Full Code Here

Examples of org.eclipse.team.ui.history.IHistoryPage

  private GitHistoryPage getPageFromPart(IWorkbenchPart part) {
    if (!(part instanceof IHistoryView))
      return null;
    IHistoryView view = (IHistoryView) part;
    IHistoryPage page = view.getHistoryPage();
    if (page instanceof GitHistoryPage)
      return (GitHistoryPage) page;
    return null;
  }
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.