Fixing javadoc warnings

git-svn-id: https://svn.apache.org/repos/asf/jakarta/commons/proper/lang/trunk@394727 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
Henri Yandell 2006-04-17 16:59:40 +00:00
parent 77fdd9eaae
commit f19304cd06
1 changed files with 6 additions and 6 deletions

View File

@ -35,8 +35,8 @@ public class CompositeFormat extends Format {
* Create a format that points its parseObject method to one implementation * Create a format that points its parseObject method to one implementation
* and its format method to another. * and its format method to another.
* *
* @param Format parser implementation * @param parser implementation
* @param Format formatter implementation * @param formatter implementation
*/ */
public CompositeFormat(Format parser, Format formatter) { public CompositeFormat(Format parser, Format formatter) {
this.parser = parser; this.parser = parser;
@ -46,7 +46,7 @@ public CompositeFormat(Format parser, Format formatter) {
/** /**
* Uses the formatter Format instance. * Uses the formatter Format instance.
* *
* @see Format.format(Object, StringBuffer, FieldPosition) * @see Format#format(Object, StringBuffer, FieldPosition)
*/ */
public StringBuffer format(Object obj, StringBuffer toAppendTo, FieldPosition pos) { public StringBuffer format(Object obj, StringBuffer toAppendTo, FieldPosition pos) {
return formatter.format(obj,toAppendTo,pos); return formatter.format(obj,toAppendTo,pos);
@ -55,7 +55,7 @@ public StringBuffer format(Object obj, StringBuffer toAppendTo, FieldPosition po
/** /**
* Uses the parser Format instance. * Uses the parser Format instance.
* *
* @see Format.parseObject(String, ParsePosition) * @see Format#parseObject(String, ParsePosition)
*/ */
public Object parseObject(String source, ParsePosition pos) { public Object parseObject(String source, ParsePosition pos) {
return parser.parseObject(source,pos); return parser.parseObject(source,pos);
@ -64,7 +64,7 @@ public Object parseObject(String source, ParsePosition pos) {
/** /**
* Provides access to the parser Format implementation. * Provides access to the parser Format implementation.
* *
* @return Parser Format implementation * @return parser Format implementation
*/ */
public Format getParser() { public Format getParser() {
return this.parser; return this.parser;
@ -73,7 +73,7 @@ public Format getParser() {
/** /**
* Provides access to the parser Format implementation. * Provides access to the parser Format implementation.
* *
* @return Formatter Format implementation * @return formatter Format implementation
*/ */
public Format getFormatter() { public Format getFormatter() {
return this.formatter; return this.formatter;