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