fixed javadoc comments pasted from ComplexFormat without care

git-svn-id: https://svn.apache.org/repos/asf/commons/proper/math/branches/MATH_2_0@680113 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
Luc Maisonobe 2008-07-27 14:34:37 +00:00
parent 3a8e7620e3
commit 083f748403
1 changed files with 5 additions and 5 deletions

View File

@ -123,7 +123,7 @@ public class Vector3DFormat extends CompositeFormat {
/**
* Get the set of locales for which 3D vectors formats are available.
* <p>This is the same set as the {@link NumberFormat} set.</p>
* @return available complex format locales.
* @return available 3D vector format locales.
*/
public static Locale[] getAvailableLocales() {
return NumberFormat.getAvailableLocales();
@ -162,17 +162,17 @@ public class Vector3DFormat extends CompositeFormat {
}
/**
* Returns the default complex format for the current locale.
* @return the default complex format.
* Returns the default 3D vector format for the current locale.
* @return the default 3D vector format.
*/
public static Vector3DFormat getInstance() {
return getInstance(Locale.getDefault());
}
/**
* Returns the default complex format for the given locale.
* Returns the default 3D vector format for the given locale.
* @param locale the specific locale used by the format.
* @return the complex format specific to the given locale.
* @return the 3D vector format specific to the given locale.
*/
public static Vector3DFormat getInstance(final Locale locale) {
return new Vector3DFormat(getDefaultNumberFormat(locale));