Home | History | Annotate | Download | only in header

Lines Matching defs:date

35 * Date Header.
37 *@version 1.2 $Revision: 1.6 $ $Date: 2009/07/17 18:57:37 $
50 /** date field
52 protected SIPDate date;
57 super(DATE);
64 return date.encode();
68 * Set the date member
72 date = d;
77 * Sets date of DateHeader. The date is repesented by the Calendar object.
79 * @param dat the Calendar object date of this header.
83 date = new SIPDate(dat.getTime().getTime());
87 * Gets the date of DateHeader. The date is repesented by the Calender
90 * @return the Calendar object representing the date of DateHeader
93 if (date == null)
95 return date.getJavaCal();
100 if (this.date != null)
101 retval.date = (SIPDate) this.date.clone();