1 package org.tigris.scarab.reports; 2 3 41 42 import java.util.Date ; 43 import org.apache.fulcrum.intake.Retrievable; 44 45 50 public class ReportDate 51 implements java.io.Serializable , 52 Retrievable 53 { 54 private long time; 55 56 private String queryKey; 57 58 62 public long getTime() 63 { 64 return time; 65 } 66 67 71 public void setTime(long newTime) 72 { 73 this.time = newTime; 74 } 75 76 public Date dateValue() 77 { 78 return new Date (time); 79 } 80 81 85 public String getQueryKey() 86 { 87 return queryKey == null ? "" : queryKey; 88 } 89 90 94 public void setQueryKey(String newQueryKey) 95 { 96 this.queryKey = newQueryKey; 97 } 98 } 99 | Popular Tags |