fix checkstyle issues

git-svn-id: https://svn.apache.org/repos/asf/commons/proper/lang/trunk@1057365 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
Niall Pemberton 2011-01-10 21:14:23 +00:00
parent b73e1f7615
commit 9736947c80
1 changed files with 7 additions and 1 deletions

View File

@ -47,7 +47,7 @@
* found is used for this format element. * found is used for this format element.
* </p> * </p>
* *
* <p>NOTICE: The various subformat mutator methods are considered unnecessary; they exist on the parent * <p><b>NOTICE:</b> The various subformat mutator methods are considered unnecessary; they exist on the parent
* class to allow the type of customization which it is the job of this class to provide in * class to allow the type of customization which it is the job of this class to provide in
* a configurable fashion. These methods have thus been disabled and will throw * a configurable fashion. These methods have thus been disabled and will throw
* <code>UnsupportedOperationException</code> if called. * <code>UnsupportedOperationException</code> if called.
@ -210,6 +210,8 @@ public final void applyPattern(String pattern) {
/** /**
* Throws UnsupportedOperationException - see class Javadoc for details. * Throws UnsupportedOperationException - see class Javadoc for details.
* *
* @param formatElementIndex format element index
* @param newFormat the new format
* @throws UnsupportedOperationException * @throws UnsupportedOperationException
*/ */
@Override @Override
@ -220,6 +222,8 @@ public void setFormat(int formatElementIndex, Format newFormat) {
/** /**
* Throws UnsupportedOperationException - see class Javadoc for details. * Throws UnsupportedOperationException - see class Javadoc for details.
* *
* @param argumentIndex argument index
* @param newFormat the new format
* @throws UnsupportedOperationException * @throws UnsupportedOperationException
*/ */
@Override @Override
@ -230,6 +234,7 @@ public void setFormatByArgumentIndex(int argumentIndex, Format newFormat) {
/** /**
* Throws UnsupportedOperationException - see class Javadoc for details. * Throws UnsupportedOperationException - see class Javadoc for details.
* *
* @param newFormats new formats
* @throws UnsupportedOperationException * @throws UnsupportedOperationException
*/ */
@Override @Override
@ -240,6 +245,7 @@ public void setFormats(Format[] newFormats) {
/** /**
* Throws UnsupportedOperationException - see class Javadoc for details. * Throws UnsupportedOperationException - see class Javadoc for details.
* *
* @param newFormats new formats
* @throws UnsupportedOperationException * @throws UnsupportedOperationException
*/ */
@Override @Override