Adding NOPMD tags

git-svn-id: https://svn.apache.org/repos/asf/commons/proper/lang/trunk@1089740 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
Henri Yandell 2011-04-07 05:01:54 +00:00
parent d6fe7f6789
commit fb79157dbb
1 changed files with 40 additions and 40 deletions

View File

@ -52,7 +52,7 @@ public StandardToStringStyle() {
* @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 boolean isUseClassName() {
* @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 void setUseClassName(boolean useClassName) {
* @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 boolean isUseShortClassName() {
* @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 void setUseShortClassName(boolean useShortClassName) {
* @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 boolean isUseIdentityHashCode() {
* @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 void setUseIdentityHashCode(boolean useIdentityHashCode) {
* @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 boolean isUseFieldNames() {
* @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 void setUseFieldNames(boolean useFieldNames) {
* @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 boolean isDefaultFullDetail() {
* @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 void setDefaultFullDetail(boolean defaultFullDetail) {
* @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 boolean isArrayContentDetail() {
* @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 void setArrayContentDetail(boolean arrayContentDetail) {
* @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 String getArrayStart() {
* @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 void setArrayStart(String arrayStart) {
* @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 String getArrayEnd() {
* @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 void setArrayEnd(String arrayEnd) {
* @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 String getArraySeparator() {
* @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 void setArraySeparator(String arraySeparator) {
* @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 String getContentStart() {
* @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 void setContentStart(String contentStart) {
* @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 String getContentEnd() {
* @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 void setContentEnd(String contentEnd) {
* @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 String getFieldNameValueSeparator() {
* @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 void setFieldNameValueSeparator(String fieldNameValueSeparator) {
* @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 String getFieldSeparator() {
* @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 void setFieldSeparator(String fieldSeparator) {
* @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 boolean isFieldSeparatorAtStart() {
* @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 void setFieldSeparatorAtStart(boolean fieldSeparatorAtStart) {
* @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 boolean isFieldSeparatorAtEnd() {
* @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 void setFieldSeparatorAtEnd(boolean fieldSeparatorAtEnd) {
* @return the current text to output when <code>null</code> found
*/
@Override
public String getNullText() {
public String getNullText() { // NOPMD as this is implementing the abstract class
return super.getNullText();
}
@ -427,7 +427,7 @@ public String getNullText() {
* @param nullText the new text to output when <code>null</code> 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 void setNullText(String nullText) {
* @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 String getSizeStartText() {
* @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 void setSizeStartText(String sizeStartText) {
* @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 String getSizeEndText() {
* @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 void setSizeEndText(String sizeEndText) {
* @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 String getSummaryObjectStartText() {
* @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 void setSummaryObjectStartText(String summaryObjectStartText) {
* @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 String getSummaryObjectEndText() {
* @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);
}