Use @see tag.

git-svn-id: https://svn.apache.org/repos/asf/commons/proper/lang/trunk@1309983 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
Gary D. Gregory 2012-04-05 18:17:59 +00:00
parent 510e3761dc
commit f177e2277d
1 changed files with 5 additions and 3 deletions

View File

@ -85,13 +85,15 @@ public interface DateParser {
/**
* Parses text from a string to produce a Date.
* See {@link java.text.DateFormat#parseObject(String)}
*
* @see java.text.DateFormat#parseObject(String)
*/
Object parseObject(String source) throws ParseException;
/**
* Parse a date/time string according to the given parse position.
* See {@link java.text.DateFormat#parseObject(String, ParsePosition)}
* Parse a date/time string according to the given parse position.
*
* @see java.text.DateFormat#parseObject(String, ParsePosition)
*/
public Object parseObject(String source, ParsePosition pos);
}