Interface PIMDateable

All Known Implementing Classes:
PIMTodo

public interface PIMDateable


Method Summary
 java.util.Date getDate()
          get the date associated with the PIM object.
 void setDate(java.util.Date d)
          set the date to be associated with the PIM object.
 void setDate(java.lang.String s)
          set the date from a String in the format "mm/dd/yy"
 

Method Detail

getDate

public java.util.Date getDate()
get the date associated with the PIM object.

Returns:
a Date object

setDate

public void setDate(java.lang.String s)
set the date from a String in the format "mm/dd/yy"

Parameters:
s - the string holding a representation of the date to be assigned.

setDate

public void setDate(java.util.Date d)
set the date to be associated with the PIM object.

Parameters:
d - the a Date object.