Lines Matching refs:date
28 private Date created; // The date of creation of the item
29 private Date modified; // The last modification date of the item
48 created = new Date(); // Defaults to the system's current date
49 modified = new Date(); // Defaults to the system's current date
64 * Returns the date this item was last modified.
72 * Returns the date the item was first created.
213 * Sets the created date of the item given a date formatted string.
223 * Sets the created date of the item.
226 public void setCreatedDate(Date date) {
227 created = date;
231 * Sets the last modififcation date of the item given a date formatted string.
242 * Sets the last modification date of the item.
245 public void setModifiedDate(Date date) {
246 modified = date;