Coverage Report - net.spy.digg.TimestampedPagingParameters
 
Classes in this File Line Coverage Branch Coverage Complexity
TimestampedPagingParameters
0%
0/7
N/A
1
 
 1  
 package net.spy.digg;
 2  
 
 3  
 /**
 4  
  * Abstract paging parameters for items that have time ranges by submission.
 5  
  */
 6  0
 abstract class TimestampedPagingParameters extends PagingParameters {
 7  
 
 8  
         private Long minSubmitDate;
 9  
         private Long maxSubmitDate;
 10  
 
 11  
         /**
 12  
          * Get the maximum submission date.
 13  
          */
 14  
         public Long getMaxSubmitDate() {
 15  0
                 return maxSubmitDate;
 16  
         }
 17  
 
 18  
         /**
 19  
          * Set the maximum submission date.
 20  
          */
 21  
         public void setMaxSubmitDate(Long to) {
 22  0
                 maxSubmitDate = to;
 23  0
         }
 24  
 
 25  
         /**
 26  
          * Get the minimum submission date.
 27  
          */
 28  
         public Long getMinSubmitDate() {
 29  0
                 return minSubmitDate;
 30  
         }
 31  
 
 32  
         /**
 33  
          * Set the minimum submission date.
 34  
          */
 35  
         public void setMinSubmitDate(Long to) {
 36  0
                 minSubmitDate = to;
 37  0
         }
 38  
 
 39  
 }