Lines Matching refs:created
28 private Date created; // The date of creation of the item
30 private String creator; // The name of the person who created the item
48 created = new Date(); // Defaults to the system's current date
72 * Returns the date the item was first created.
76 return created;
80 * Returns the login name of the user that created the item.
213 * Sets the created date of the item given a date formatted string.
219 if (dateStr != null) created = parseDateFromString(dateStr);
223 * Sets the created date of the item.
227 created = date;
265 if (created != null) {
267 createdCal.setTime(created);
271 retStr += " @created " + String.valueOf(year) + "-"