private boolean isAfterFromDate(CVSFileRevision revision) { if (fromDate == null) return true; return (fromDate.before(new Date(revision.getTimestamp()))); }
protected boolean commentMatch(CVSFileRevision revision) { return !(revision.getComment().toLowerCase().indexOf(comment.toLowerCase()) == -1); }
private boolean isBeforeToDate(CVSFileRevision revision) { if (toDate == null) return true; return (toDate.after(new Date(revision.getTimestamp()))); }
protected boolean authorMatch(CVSFileRevision revision) { return revision.getAuthor().equals(author); }