Return-Path: Delivered-To: apmail-commons-commits-archive@minotaur.apache.org Received: (qmail 57420 invoked from network); 7 Apr 2011 05:02:18 -0000 Received: from hermes.apache.org (HELO mail.apache.org) (140.211.11.3) by minotaur.apache.org with SMTP; 7 Apr 2011 05:02:18 -0000 Received: (qmail 45885 invoked by uid 500); 7 Apr 2011 05:02:18 -0000 Delivered-To: apmail-commons-commits-archive@commons.apache.org Received: (qmail 45830 invoked by uid 500); 7 Apr 2011 05:02:17 -0000 Mailing-List: contact commits-help@commons.apache.org; run by ezmlm Precedence: bulk List-Help: List-Unsubscribe: List-Post: List-Id: Reply-To: dev@commons.apache.org Delivered-To: mailing list commits@commons.apache.org Received: (qmail 45822 invoked by uid 99); 7 Apr 2011 05:02:16 -0000 Received: from athena.apache.org (HELO athena.apache.org) (140.211.11.136) by apache.org (qpsmtpd/0.29) with ESMTP; Thu, 07 Apr 2011 05:02:16 +0000 X-ASF-Spam-Status: No, hits=-2000.0 required=5.0 tests=ALL_TRUSTED X-Spam-Check-By: apache.org Received: from [140.211.11.4] (HELO eris.apache.org) (140.211.11.4) by apache.org (qpsmtpd/0.29) with ESMTP; Thu, 07 Apr 2011 05:02:14 +0000 Received: by eris.apache.org (Postfix, from userid 65534) id 7656223889D5; Thu, 7 Apr 2011 05:01:54 +0000 (UTC) Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit Subject: svn commit: r1089740 - /commons/proper/lang/trunk/src/main/java/org/apache/commons/lang3/builder/StandardToStringStyle.java Date: Thu, 07 Apr 2011 05:01:54 -0000 To: commits@commons.apache.org From: bayard@apache.org X-Mailer: svnmailer-1.0.8 Message-Id: <20110407050154.7656223889D5@eris.apache.org> Author: bayard Date: Thu Apr 7 05:01:54 2011 New Revision: 1089740 URL: http://svn.apache.org/viewvc?rev=1089740&view=rev Log: Adding NOPMD tags Modified: commons/proper/lang/trunk/src/main/java/org/apache/commons/lang3/builder/StandardToStringStyle.java Modified: commons/proper/lang/trunk/src/main/java/org/apache/commons/lang3/builder/StandardToStringStyle.java URL: http://svn.apache.org/viewvc/commons/proper/lang/trunk/src/main/java/org/apache/commons/lang3/builder/StandardToStringStyle.java?rev=1089740&r1=1089739&r2=1089740&view=diff ============================================================================== --- commons/proper/lang/trunk/src/main/java/org/apache/commons/lang3/builder/StandardToStringStyle.java (original) +++ commons/proper/lang/trunk/src/main/java/org/apache/commons/lang3/builder/StandardToStringStyle.java Thu Apr 7 05:01:54 2011 @@ -52,7 +52,7 @@ public class StandardToStringStyle exten * @return the current useClassName flag */ @Override - public boolean isUseClassName() { + public boolean isUseClassName() { // NOPMD as this is implementing the abstract class return super.isUseClassName(); } @@ -62,7 +62,7 @@ public class StandardToStringStyle exten * @param useClassName the new useClassName flag */ @Override - public void setUseClassName(boolean useClassName) { + public void setUseClassName(boolean useClassName) { // NOPMD as this is implementing the abstract class super.setUseClassName(useClassName); } @@ -75,7 +75,7 @@ public class StandardToStringStyle exten * @since 2.0 */ @Override - public boolean isUseShortClassName() { + public boolean isUseShortClassName() { // NOPMD as this is implementing the abstract class return super.isUseShortClassName(); } @@ -86,7 +86,7 @@ public class StandardToStringStyle exten * @since 2.0 */ @Override - public void setUseShortClassName(boolean useShortClassName) { + public void setUseShortClassName(boolean useShortClassName) { // NOPMD as this is implementing the abstract class super.setUseShortClassName(useShortClassName); } @@ -97,7 +97,7 @@ public class StandardToStringStyle exten * @return the current useIdentityHashCode flag */ @Override - public boolean isUseIdentityHashCode() { + public boolean isUseIdentityHashCode() { // NOPMD as this is implementing the abstract class return super.isUseIdentityHashCode(); } @@ -107,7 +107,7 @@ public class StandardToStringStyle exten * @param useIdentityHashCode the new useIdentityHashCode flag */ @Override - public void setUseIdentityHashCode(boolean useIdentityHashCode) { + public void setUseIdentityHashCode(boolean useIdentityHashCode) { // NOPMD as this is implementing the abstract class super.setUseIdentityHashCode(useIdentityHashCode); } @@ -119,7 +119,7 @@ public class StandardToStringStyle exten * @return the current useFieldNames flag */ @Override - public boolean isUseFieldNames() { + public boolean isUseFieldNames() { // NOPMD as this is implementing the abstract class return super.isUseFieldNames(); } @@ -129,7 +129,7 @@ public class StandardToStringStyle exten * @param useFieldNames the new useFieldNames flag */ @Override - public void setUseFieldNames(boolean useFieldNames) { + public void setUseFieldNames(boolean useFieldNames) { // NOPMD as this is implementing the abstract class super.setUseFieldNames(useFieldNames); } @@ -142,7 +142,7 @@ public class StandardToStringStyle exten * @return the current defaultFullDetail flag */ @Override - public boolean isDefaultFullDetail() { + public boolean isDefaultFullDetail() { // NOPMD as this is implementing the abstract class return super.isDefaultFullDetail(); } @@ -153,7 +153,7 @@ public class StandardToStringStyle exten * @param defaultFullDetail the new defaultFullDetail flag */ @Override - public void setDefaultFullDetail(boolean defaultFullDetail) { + public void setDefaultFullDetail(boolean defaultFullDetail) { // NOPMD as this is implementing the abstract class super.setDefaultFullDetail(defaultFullDetail); } @@ -165,7 +165,7 @@ public class StandardToStringStyle exten * @return the current array content detail setting */ @Override - public boolean isArrayContentDetail() { + public boolean isArrayContentDetail() { // NOPMD as this is implementing the abstract class return super.isArrayContentDetail(); } @@ -175,7 +175,7 @@ public class StandardToStringStyle exten * @param arrayContentDetail the new arrayContentDetail flag */ @Override - public void setArrayContentDetail(boolean arrayContentDetail) { + public void setArrayContentDetail(boolean arrayContentDetail) { // NOPMD as this is implementing the abstract class super.setArrayContentDetail(arrayContentDetail); } @@ -187,7 +187,7 @@ public class StandardToStringStyle exten * @return the current array start text */ @Override - public String getArrayStart() { + public String getArrayStart() { // NOPMD as this is implementing the abstract class return super.getArrayStart(); } @@ -200,7 +200,7 @@ public class StandardToStringStyle exten * @param arrayStart the new array start text */ @Override - public void setArrayStart(String arrayStart) { + public void setArrayStart(String arrayStart) { // NOPMD as this is implementing the abstract class super.setArrayStart(arrayStart); } @@ -212,7 +212,7 @@ public class StandardToStringStyle exten * @return the current array end text */ @Override - public String getArrayEnd() { + public String getArrayEnd() { // NOPMD as this is implementing the abstract class return super.getArrayEnd(); } @@ -225,7 +225,7 @@ public class StandardToStringStyle exten * @param arrayEnd the new array end text */ @Override - public void setArrayEnd(String arrayEnd) { + public void setArrayEnd(String arrayEnd) { // NOPMD as this is implementing the abstract class super.setArrayEnd(arrayEnd); } @@ -237,7 +237,7 @@ public class StandardToStringStyle exten * @return the current array separator text */ @Override - public String getArraySeparator() { + public String getArraySeparator() { // NOPMD as this is implementing the abstract class return super.getArraySeparator(); } @@ -250,7 +250,7 @@ public class StandardToStringStyle exten * @param arraySeparator the new array separator text */ @Override - public void setArraySeparator(String arraySeparator) { + public void setArraySeparator(String arraySeparator) { // NOPMD as this is implementing the abstract class super.setArraySeparator(arraySeparator); } @@ -262,7 +262,7 @@ public class StandardToStringStyle exten * @return the current content start text */ @Override - public String getContentStart() { + public String getContentStart() { // NOPMD as this is implementing the abstract class return super.getContentStart(); } @@ -275,7 +275,7 @@ public class StandardToStringStyle exten * @param contentStart the new content start text */ @Override - public void setContentStart(String contentStart) { + public void setContentStart(String contentStart) { // NOPMD as this is implementing the abstract class super.setContentStart(contentStart); } @@ -287,7 +287,7 @@ public class StandardToStringStyle exten * @return the current content end text */ @Override - public String getContentEnd() { + public String getContentEnd() { // NOPMD as this is implementing the abstract class return super.getContentEnd(); } @@ -300,7 +300,7 @@ public class StandardToStringStyle exten * @param contentEnd the new content end text */ @Override - public void setContentEnd(String contentEnd) { + public void setContentEnd(String contentEnd) { // NOPMD as this is implementing the abstract class super.setContentEnd(contentEnd); } @@ -312,7 +312,7 @@ public class StandardToStringStyle exten * @return the current field name value separator text */ @Override - public String getFieldNameValueSeparator() { + public String getFieldNameValueSeparator() { // NOPMD as this is implementing the abstract class return super.getFieldNameValueSeparator(); } @@ -325,7 +325,7 @@ public class StandardToStringStyle exten * @param fieldNameValueSeparator the new field name value separator text */ @Override - public void setFieldNameValueSeparator(String fieldNameValueSeparator) { + public void setFieldNameValueSeparator(String fieldNameValueSeparator) { // NOPMD as this is implementing the abstract class super.setFieldNameValueSeparator(fieldNameValueSeparator); } @@ -337,7 +337,7 @@ public class StandardToStringStyle exten * @return the current field separator text */ @Override - public String getFieldSeparator() { + public String getFieldSeparator() { // NOPMD as this is implementing the abstract class return super.getFieldSeparator(); } @@ -350,7 +350,7 @@ public class StandardToStringStyle exten * @param fieldSeparator the new field separator text */ @Override - public void setFieldSeparator(String fieldSeparator) { + public void setFieldSeparator(String fieldSeparator) { // NOPMD as this is implementing the abstract class super.setFieldSeparator(fieldSeparator); } @@ -364,7 +364,7 @@ public class StandardToStringStyle exten * @since 2.0 */ @Override - public boolean isFieldSeparatorAtStart() { + public boolean isFieldSeparatorAtStart() { // NOPMD as this is implementing the abstract class return super.isFieldSeparatorAtStart(); } @@ -376,7 +376,7 @@ public class StandardToStringStyle exten * @since 2.0 */ @Override - public void setFieldSeparatorAtStart(boolean fieldSeparatorAtStart) { + public void setFieldSeparatorAtStart(boolean fieldSeparatorAtStart) { // NOPMD as this is implementing the abstract class super.setFieldSeparatorAtStart(fieldSeparatorAtStart); } @@ -390,7 +390,7 @@ public class StandardToStringStyle exten * @since 2.0 */ @Override - public boolean isFieldSeparatorAtEnd() { + public boolean isFieldSeparatorAtEnd() { // NOPMD as this is implementing the abstract class return super.isFieldSeparatorAtEnd(); } @@ -402,7 +402,7 @@ public class StandardToStringStyle exten * @since 2.0 */ @Override - public void setFieldSeparatorAtEnd(boolean fieldSeparatorAtEnd) { + public void setFieldSeparatorAtEnd(boolean fieldSeparatorAtEnd) { // NOPMD as this is implementing the abstract class super.setFieldSeparatorAtEnd(fieldSeparatorAtEnd); } @@ -414,7 +414,7 @@ public class StandardToStringStyle exten * @return the current text to output when null found */ @Override - public String getNullText() { + public String getNullText() { // NOPMD as this is implementing the abstract class return super.getNullText(); } @@ -427,7 +427,7 @@ public class StandardToStringStyle exten * @param nullText the new text to output when null found */ @Override - public void setNullText(String nullText) { + public void setNullText(String nullText) { // NOPMD as this is implementing the abstract class super.setNullText(nullText); } @@ -442,7 +442,7 @@ public class StandardToStringStyle exten * @return the current start of size text */ @Override - public String getSizeStartText() { + public String getSizeStartText() { // NOPMD as this is implementing the abstract class return super.getSizeStartText(); } @@ -458,7 +458,7 @@ public class StandardToStringStyle exten * @param sizeStartText the new start of size text */ @Override - public void setSizeStartText(String sizeStartText) { + public void setSizeStartText(String sizeStartText) { // NOPMD as this is implementing the abstract class super.setSizeStartText(sizeStartText); } @@ -473,7 +473,7 @@ public class StandardToStringStyle exten * @return the current end of size text */ @Override - public String getSizeEndText() { + public String getSizeEndText() { // NOPMD as this is implementing the abstract class return super.getSizeEndText(); } @@ -489,7 +489,7 @@ public class StandardToStringStyle exten * @param sizeEndText the new end of size text */ @Override - public void setSizeEndText(String sizeEndText) { + public void setSizeEndText(String sizeEndText) { // NOPMD as this is implementing the abstract class super.setSizeEndText(sizeEndText); } @@ -504,7 +504,7 @@ public class StandardToStringStyle exten * @return the current start of summary text */ @Override - public String getSummaryObjectStartText() { + public String getSummaryObjectStartText() { // NOPMD as this is implementing the abstract class return super.getSummaryObjectStartText(); } @@ -520,7 +520,7 @@ public class StandardToStringStyle exten * @param summaryObjectStartText the new start of summary text */ @Override - public void setSummaryObjectStartText(String summaryObjectStartText) { + public void setSummaryObjectStartText(String summaryObjectStartText) { // NOPMD as this is implementing the abstract class super.setSummaryObjectStartText(summaryObjectStartText); } @@ -535,7 +535,7 @@ public class StandardToStringStyle exten * @return the current end of summary text */ @Override - public String getSummaryObjectEndText() { + public String getSummaryObjectEndText() { // NOPMD as this is implementing the abstract class return super.getSummaryObjectEndText(); } @@ -551,7 +551,7 @@ public class StandardToStringStyle exten * @param summaryObjectEndText the new end of summary text */ @Override - public void setSummaryObjectEndText(String summaryObjectEndText) { + public void setSummaryObjectEndText(String summaryObjectEndText) { // NOPMD as this is implementing the abstract class super.setSummaryObjectEndText(summaryObjectEndText); }