fixed checkstyle violations: Line is longer than 120 characters

git-svn-id: https://svn.apache.org/repos/asf/commons/proper/digester/trunk@1140259 13f79535-47bb-0310-9956-ffa450edef68
diff --git a/src/main/java/org/apache/commons/digester3/SetNextRule.java b/src/main/java/org/apache/commons/digester3/SetNextRule.java
index 04663f2..ed2bd1c 100644
--- a/src/main/java/org/apache/commons/digester3/SetNextRule.java
+++ b/src/main/java/org/apache/commons/digester3/SetNextRule.java
@@ -57,9 +57,9 @@
      * Construct a "set next" rule with the specified method name.
      * 
      * @param methodName Method name of the parent method to call
-     * @param paramType Java class name of the parent method's argument (if you wish to use a primitive type, specify the
-     *            corresonding Java wrapper class instead, such as <code>java.lang.Boolean</code> for a
-     *            <code>boolean</code> parameter)
+     * @param paramType Java class name of the parent method's argument (if you wish to use a primitive type,
+     *                  specify the corresonding Java wrapper class instead, such as <code>java.lang.Boolean</code>
+     *                  for a <code>boolean</code> parameter)
      */
     public SetNextRule( String methodName, String paramType )
     {
@@ -71,8 +71,8 @@
      * 
      * @param methodName Method name of the parent method to call
      * @param paramType Java class of the parent method's argument (if you wish to use a primitive type, specify the
-     *            corresonding Java wrapper class instead, such as <code>java.lang.Boolean</code> for a
-     *            <code>boolean</code> parameter)
+     *                  corresonding Java wrapper class instead, such as <code>java.lang.Boolean</code> for a
+     *                  <code>boolean</code> parameter)
      */
     public SetNextRule( String methodName, Class<?> paramType )
     {
diff --git a/src/main/java/org/apache/commons/digester3/SetRootRule.java b/src/main/java/org/apache/commons/digester3/SetRootRule.java
index 6cd55b9..35a935c 100644
--- a/src/main/java/org/apache/commons/digester3/SetRootRule.java
+++ b/src/main/java/org/apache/commons/digester3/SetRootRule.java
@@ -51,9 +51,9 @@
      * Construct a "set root" rule with the specified method name.
      * 
      * @param methodName Method name of the parent method to call
-     * @param paramType Java class name of the parent method's argument (if you wish to use a primitive type, specify the
-     *            corresonding Java wrapper class instead, such as <code>java.lang.Boolean</code> for a
-     *            <code>boolean</code> parameter)
+     * @param paramType Java class name of the parent method's argument (if you wish to use a primitive type,
+     *                  specify the corresonding Java wrapper class instead, such as <code>java.lang.Boolean</code>
+     *                  for a <code>boolean</code> parameter)
      */
     public SetRootRule( String methodName, String paramType )
     {
@@ -65,8 +65,8 @@
      * 
      * @param methodName Method name of the parent method to call
      * @param paramType Java class of the parent method's argument (if you wish to use a primitive type, specify the
-     *            corresonding Java wrapper class instead, such as <code>java.lang.Boolean</code> for a
-     *            <code>boolean</code> parameter)
+     *                  corresonding Java wrapper class instead, such as <code>java.lang.Boolean</code> for a
+     *                  <code>boolean</code> parameter)
      */
     public SetRootRule( String methodName, Class<?> paramType )
     {
diff --git a/src/main/java/org/apache/commons/digester3/SetTopRule.java b/src/main/java/org/apache/commons/digester3/SetTopRule.java
index 08e3709..985f610 100644
--- a/src/main/java/org/apache/commons/digester3/SetTopRule.java
+++ b/src/main/java/org/apache/commons/digester3/SetTopRule.java
@@ -51,9 +51,9 @@
      * Construct a "set top" rule with the specified method name.
      * 
      * @param methodName Method name of the parent method to call
-     * @param paramType Java class name of the parent method's argument (if you wish to use a primitive type, specify the
-     *            corresonding Java wrapper class instead, such as <code>java.lang.Boolean</code> for a
-     *            <code>boolean</code> parameter)
+     * @param paramType Java class name of the parent method's argument (if you wish to use a primitive type,
+     *                  specify the corresonding Java wrapper class instead, such as <code>java.lang.Boolean</code>
+     *                  for a <code>boolean</code> parameter)
      */
     public SetTopRule( String methodName, String paramType )
     {
diff --git a/src/main/java/org/apache/commons/digester3/annotations/handlers/AbstractMethodHandler.java b/src/main/java/org/apache/commons/digester3/annotations/handlers/AbstractMethodHandler.java
index db8d9b0..346d795 100644
--- a/src/main/java/org/apache/commons/digester3/annotations/handlers/AbstractMethodHandler.java
+++ b/src/main/java/org/apache/commons/digester3/annotations/handlers/AbstractMethodHandler.java
@@ -100,7 +100,8 @@
         }
     }
 
-    private void doHandle( A methodAnnotation, Method method, Class<?> type, boolean fireOnBegin, RulesBinder rulesBinder )
+    private void doHandle( A methodAnnotation, Method method, Class<?> type, boolean fireOnBegin,
+                           RulesBinder rulesBinder )
     {
         if ( type.isInterface() && Modifier.isAbstract( type.getModifiers() ) )
         {