Interface members are implicitly public.

git-svn-id: https://svn.apache.org/repos/asf/commons/proper/lang/trunk@1309987 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
Gary D. Gregory 2012-04-05 18:19:44 +00:00
parent f177e2277d
commit b889c1667f
2 changed files with 15 additions and 15 deletions

View File

@ -38,7 +38,7 @@ public interface DateParser {
* @return A <code>Date</code> parsed from the string
* @throws ParseException if the beginning of the specified string cannot be parsed.
*/
public Date parse(String source) throws ParseException;
Date parse(String source) throws ParseException;
/**
* Equivalent to DateFormat.parse(String, ParsePosition).
@ -51,7 +51,7 @@ public interface DateParser {
* @return A <code>Date</code> parsed from the string. In case of error, returns null.
* @throws NullPointerException if text or pos is null.
*/
public Date parse(String source, ParsePosition pos);
Date parse(String source, ParsePosition pos);
// Accessors
//-----------------------------------------------------------------------
@ -60,7 +60,7 @@ public interface DateParser {
*
* @return the pattern, {@link java.text.SimpleDateFormat} compatible
*/
public String getPattern();
String getPattern();
/**
* <p>
@ -74,14 +74,14 @@ public interface DateParser {
*
* @return the time zone
*/
public TimeZone getTimeZone();
TimeZone getTimeZone();
/**
* <p>Get the locale used by this parser.</p>
*
* @return the locale
*/
public Locale getLocale();
Locale getLocale();
/**
* Parses text from a string to produce a Date.
@ -95,5 +95,5 @@ public interface DateParser {
*
* @see java.text.DateFormat#parseObject(String, ParsePosition)
*/
public Object parseObject(String source, ParsePosition pos);
Object parseObject(String source, ParsePosition pos);
}

View File

@ -37,7 +37,7 @@ public interface DatePrinter {
* @return the formatted string
* @since 2.1
*/
public String format(long millis);
String format(long millis);
/**
* <p>Formats a {@code Date} object using a {@code GregorianCalendar}.</p>
@ -45,7 +45,7 @@ public interface DatePrinter {
* @param date the date to format
* @return the formatted string
*/
public String format(Date date);
String format(Date date);
/**
* <p>Formats a {@code Calendar} object.</p>
@ -53,7 +53,7 @@ public interface DatePrinter {
* @param calendar the calendar to format
* @return the formatted string
*/
public String format(Calendar calendar);
String format(Calendar calendar);
/**
* <p>Formats a milliseond {@code long} value into the
@ -63,7 +63,7 @@ public interface DatePrinter {
* @param buf the buffer to format into
* @return the specified string buffer
*/
public StringBuffer format(long millis, StringBuffer buf);
StringBuffer format(long millis, StringBuffer buf);
/**
* <p>Formats a {@code Date} object into the
@ -73,7 +73,7 @@ public interface DatePrinter {
* @param buf the buffer to format into
* @return the specified string buffer
*/
public StringBuffer format(Date date, StringBuffer buf);
StringBuffer format(Date date, StringBuffer buf);
/**
* <p>Formats a {@code Calendar} object into the
@ -83,7 +83,7 @@ public interface DatePrinter {
* @param buf the buffer to format into
* @return the specified string buffer
*/
public StringBuffer format(Calendar calendar, StringBuffer buf);
StringBuffer format(Calendar calendar, StringBuffer buf);
// Accessors
//-----------------------------------------------------------------------
@ -92,7 +92,7 @@ public interface DatePrinter {
*
* @return the pattern, {@link java.text.SimpleDateFormat} compatible
*/
public String getPattern();
String getPattern();
/**
* <p>Gets the time zone used by this printer.</p>
@ -101,14 +101,14 @@ public interface DatePrinter {
*
* @return the time zone
*/
public TimeZone getTimeZone();
TimeZone getTimeZone();
/**
* <p>Gets the locale used by this printer.</p>
*
* @return the locale
*/
public Locale getLocale();
Locale getLocale();
/**
* <p>Formats a {@code Date}, {@code Calendar} or