Sort JavaDoc tags

This commit is contained in:
Benedikt Ritter 2016-09-11 17:10:38 +02:00
parent ae91ab56ac
commit be21e8fc35
1 changed files with 5 additions and 6 deletions

View File

@ -65,11 +65,11 @@ public interface DatePrinter {
/** /**
* <p>Formats a millisecond {@code long} value into the * <p>Formats a millisecond {@code long} value into the
* supplied {@code StringBuffer}.</p> * supplied {@code StringBuffer}.</p>
* @deprecated Use {{@link #format(long, Appendable)}.
* *
* @param millis the millisecond value to format * @param millis the millisecond value to format
* @param buf the buffer to format into * @param buf the buffer to format into
* @return the specified string buffer * @return the specified string buffer
* @deprecated Use {{@link #format(long, Appendable)}.
*/ */
@Deprecated @Deprecated
StringBuffer format(long millis, StringBuffer buf); StringBuffer format(long millis, StringBuffer buf);
@ -77,11 +77,11 @@ public interface DatePrinter {
/** /**
* <p>Formats a {@code Date} object into the * <p>Formats a {@code Date} object into the
* supplied {@code StringBuffer} using a {@code GregorianCalendar}.</p> * supplied {@code StringBuffer} using a {@code GregorianCalendar}.</p>
* @deprecated Use {{@link #format(Date, Appendable)}.
* *
* @param date the date to format * @param date the date to format
* @param buf the buffer to format into * @param buf the buffer to format into
* @return the specified string buffer * @return the specified string buffer
* @deprecated Use {{@link #format(Date, Appendable)}.
*/ */
@Deprecated @Deprecated
StringBuffer format(Date date, StringBuffer buf); StringBuffer format(Date date, StringBuffer buf);
@ -91,11 +91,11 @@ public interface DatePrinter {
* The TimeZone set on the Calendar is only used to adjust the time offset. * The TimeZone set on the Calendar is only used to adjust the time offset.
* The TimeZone specified during the construction of the Parser will determine the TimeZone * The TimeZone specified during the construction of the Parser will determine the TimeZone
* used in the formatted string. * used in the formatted string.
* @deprecated Use {{@link #format(Calendar, Appendable)}.
* *
* @param calendar the calendar to format * @param calendar the calendar to format
* @param buf the buffer to format into * @param buf the buffer to format into
* @return the specified string buffer * @return the specified string buffer
* @deprecated Use {{@link #format(Calendar, Appendable)}.
*/ */
@Deprecated @Deprecated
StringBuffer format(Calendar calendar, StringBuffer buf); StringBuffer format(Calendar calendar, StringBuffer buf);
@ -168,12 +168,11 @@ public interface DatePrinter {
* <p>Formats a {@code Date}, {@code Calendar} or * <p>Formats a {@code Date}, {@code Calendar} or
* {@code Long} (milliseconds) object.</p> * {@code Long} (milliseconds) object.</p>
* *
* See {@link java.text.DateFormat#format(Object, StringBuffer, FieldPosition)}
*
* @param obj the object to format * @param obj the object to format
* @param toAppendTo the buffer to append to * @param toAppendTo the buffer to append to
* @param pos the position - ignored * @param pos the position - ignored
* @return the buffer passed in * @return the buffer passed in
* @see java.text.DateFormat#format(Object, StringBuffer, FieldPosition)
*/ */
StringBuffer format(Object obj, StringBuffer toAppendTo, FieldPosition pos); StringBuffer format(Object obj, StringBuffer toAppendTo, FieldPosition pos);
} }