@Deprecated public void setDateFormat(DateFormat paramDateFormat) { if (paramDateFormat == null) paramDateFormat = StdDateFormat.instance; this._base = this._base.withDateFormat(paramDateFormat); }
/** * Method that will set the textual deserialization to use for * deserializing Dates (and Calendars). If null is passed, will * use {@link StdDateFormat}. */ public void setDateFormat(DateFormat df) { _dateFormat = (df == null) ? StdDateFormat.instance : df; }