1 11 12 package org.eclipse.team.internal.ccvs.ui; 13 14 import org.eclipse.team.ui.history.HistoryPageSource; 15 import org.eclipse.ui.part.Page; 16 17 public class CVSHistoryPageSource extends HistoryPageSource { 18 19 public Page createPage(Object object) { 20 CVSHistoryPage page = new CVSHistoryPage(object); 21 return page; 22 } 23 24 public boolean canShowHistoryFor(Object object) { 25 return CVSHistoryPage.getCVSFile(object) != null; 26 } 27 28 } 29 | Popular Tags |