Searched refs:getHistory (Results 1 - 25 of 25) sorted by relevance

/opengrok-jel/src/org/opensolaris/opengrok/history/
H A DRepository.java57 * Check if the repository supports {@code getHistory()} requests for
68 * Check if the repository supports {@code getHistory()} requests for
81 * @see #getHistory(File, String)
83 public abstract History getHistory(File file) throws HistoryException; method in class:Repository
106 public History getHistory(File file, String sinceRevision) method in class:Repository
118 History history = getHistory(file);
201 * {@code getHistory()} is used to fetch the history for the entire
233 history = getHistory(directory, sinceRevision);
253 history = getHistory(directory);
H A DHistoryGuru.java137 hist = repos.getHistory(file);
178 History history = getHistory(file, false);
193 public History getHistory(File path) throws HistoryException { method in class:HistoryGuru
194 return getHistory(path, true);
210 public History getHistory(File path, boolean withFiles) method in class:HistoryGuru
213 return getHistory(path, withFiles, null);
227 * {@link #getHistory(File, boolean)} (auto detect history type).
234 public History getHistory(File path, boolean withFiles, Boolean isDir) method in class:HistoryGuru
259 history = repos.getHistory(path);
H A DRepoRepository.java123 public History getHistory(File file) { method in class:RepoRepository
H A DBazaarRepository.java293 public History getHistory(File file, String sinceRevision) method in class:BazaarRepository
303 public History getHistory(File file) throws HistoryException { method in class:BazaarRepository
304 return getHistory(file, null);
H A DMonotoneRepository.java279 public History getHistory(File file) throws HistoryException { method in class:MonotoneRepository
280 return getHistory(file, null);
287 public History getHistory(File file, String sinceRevision) method in class:MonotoneRepository
H A DMercurialRepository.java379 History hist = HistoryGuru.getInstance().getHistory(file, false);
544 public History getHistory(File file) throws HistoryException { method in class:MercurialRepository
545 return getHistory(file, null);
552 public History getHistory(File file, String sinceRevision) method in class:MercurialRepository
H A DSubversionRepository.java258 public History getHistory(File file) throws HistoryException { method in class:SubversionRepository
259 return getHistory(file, null);
266 public History getHistory(File file, String sinceRevision) method in class:SubversionRepository
H A DRCSRepository.java172 public History getHistory(File file) throws HistoryException { method in class:RCSRepository
H A DDirectoryHistoryReader.java139 hist = HistoryGuru.getInstance().getHistory(f);
170 public History getHistory() { method in class:DirectoryHistoryReader
H A DGitRepository.java569 public History getHistory(File file) throws HistoryException { method in class:GitRepository
570 return getHistory(file, null);
577 public History getHistory(File file, String sinceRevision) method in class:GitRepository
H A DAccuRevRepository.java336 public History getHistory(File file) { method in class:AccuRevRepository
H A DCVSRepository.java256 public History getHistory(File file) throws HistoryException { method in class:CVSRepository
H A DPerforceRepository.java235 public History getHistory(File file) throws HistoryException { method in class:PerforceRepository
H A DRazorRepository.java367 public History getHistory(File file) throws HistoryException { method in class:RazorRepository
H A DSCCSRepository.java274 public History getHistory(File file) throws HistoryException { method in class:SCCSRepository
H A DClearCaseRepository.java421 public History getHistory(File file) throws HistoryException { method in class:ClearCaseRepository
H A DFileHistoryCache.java241 history = repository.getHistory(file);
H A DJDBCHistoryCache.java527 return getHistory(file, repository, withFiles, isDir);
541 private History getHistory(File file, Repository repository, method in class:JDBCHistoryCache
/opengrok-jel/test/org/opensolaris/opengrok/history/
H A DMercurialRepositoryTest.java42 * order they are supposed to be returned from getHistory().
74 History hist = mr.getHistory(root);
94 History hist = mr.getHistory(root, REVISIONS[REVISIONS.length - 1]);
108 * Test that {@code getHistory()} throws an exception if the revision
127 mr.getHistory(root, constructedRevision);
128 fail("getHistory() should have failed");
H A DHistoryGuruTest.java109 instance.getHistory(f).getHistoryEntries()) {
130 assertNotNull("" + f, instance.getHistory(f));
H A DPerforceRepositoryTest.java88 History history = instance.getHistory(f);
H A DJDBCHistoryCacheTest.java269 History historyToStore = repos.getHistory(reposRoot);
385 History history = repos.getHistory(reposRoot);
431 cache.store(hgRepos.getHistory(hgRoot), hgRepos);
437 cache.store(hgRepos.getHistory(svnRoot), svnRepos);
453 History history = repos.getHistory(reposRoot);
/opengrok-jel/src/org/opensolaris/opengrok/search/context/
H A DHistoryContext.java101 return getHistoryContext(HistoryGuru.getInstance().getHistory(f), path,
143 History hist = HistoryGuru.getInstance().getHistory(src);
/opengrok-jel/test/org/opensolaris/opengrok/search/
H A DSearchEngineTest.java135 assertNull(instance.getHistory());
138 assertEquals(hist, instance.getHistory());
/opengrok-jel/src/org/opensolaris/opengrok/search/
H A DSearchEngine.java513 public String getHistory() { method in class:SearchEngine

Completed in 69 milliseconds