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