Searched defs:entries (Results 1 - 8 of 8) sorted by relevance

/opengrok-jel/src/org/opensolaris/opengrok/history/
H A DHistory.java35 private List<HistoryEntry> entries; field in class:History
41 History(List<HistoryEntry> entries) { argument
42 this.entries = entries;
46 * Set the list of log entries for the file. The first entry is the most
49 * @param entries The entries to add to the list
51 public void setHistoryEntries(List<HistoryEntry> entries) { argument
52 this.entries = entries;
[all...]
H A DBazaarHistoryParser.java50 private List<HistoryEntry> entries = new ArrayList<HistoryEntry>(); //NOPMD field in class:BazaarHistoryParser
77 repository.removeAndVerifyOldestChangeset(entries, sinceRevision);
80 return new History(entries);
105 entries.add(entry);
188 entries.add(entry);
202 return new History(entries);
H A DHistoryReader.java33 * Class for reading history entries in a way suitable for indexing by Lucene.
37 private final List<HistoryEntry> entries; field in class:HistoryReader
41 entries = history.getHistoryEntries();
59 for (HistoryEntry entry : entries) {
H A DMonotoneHistoryParser.java53 private List<HistoryEntry> entries = new ArrayList<HistoryEntry>(); //NOPMD field in class:MonotoneHistoryParser
87 return new History(entries);
116 entries.add(entry);
195 entries.add(entry);
H A DMercurialHistoryParser.java54 private List<HistoryEntry> entries = new ArrayList<HistoryEntry>(); field in class:MercurialHistoryParser
93 repository.removeAndVerifyOldestChangeset(entries, changeset);
96 return new History(entries);
112 entries = new ArrayList<HistoryEntry>();
124 entries.add(entry);
H A DRepository.java143 * @param entries a list of {@code HistoryEntry} objects
148 void removeAndVerifyOldestChangeset(List<HistoryEntry> entries, argument
152 entries.isEmpty() ? null : entries.remove(entries.size() - 1);
H A DSubversionHistoryParser.java66 final List<HistoryEntry> entries = new ArrayList<HistoryEntry>(); field in class:SubversionHistoryParser.Handler
119 entries.add(entry);
167 List<HistoryEntry> entries = handler.entries;
172 repos.removeAndVerifyOldestChangeset(entries, sinceRevision);
175 return new History(entries);
208 return new History(handler.entries);
/opengrok-jel/lib/
H A Dbcel-5.2.jarMETA-INF/ META-INF/MANIFEST.MF org/ org/apache/ org/apache/bcel/ org/apache/bcel/classfile/ ...

Completed in 15 milliseconds