Yes, extend Date adding the format field and override toString method, something along the lines of
public class DateWithFormat extends Date {
String format; // Assign as appropriate
public String toString() {
return new SimpleDateFormat(format).format(this));
}
}