Author: simonetripodi
Date: Mon Jun 27 18:35:41 2011
New Revision: 1140259
URL: http://svn.apache.org/viewvc?rev=1140259&view=rev
Log:
fixed checkstyle violations: Line is longer than 120 characters
Modified:
commons/proper/digester/trunk/src/main/java/org/apache/commons/digester3/SetNextRule.java
commons/proper/digester/trunk/src/main/java/org/apache/commons/digester3/SetRootRule.java
commons/proper/digester/trunk/src/main/java/org/apache/commons/digester3/SetTopRule.java
commons/proper/digester/trunk/src/main/java/org/apache/commons/digester3/annotations/handlers/AbstractMethodHandler.java
Modified:
commons/proper/digester/trunk/src/main/java/org/apache/commons/digester3/SetNextRule.java
URL:
http://svn.apache.org/viewvc/commons/proper/digester/trunk/src/main/java/org/apache/commons/digester3/SetNextRule.java?rev=1140259&r1=1140258&r2=1140259&view=diff
==============================================================================
---
commons/proper/digester/trunk/src/main/java/org/apache/commons/digester3/SetNextRule.java
(original)
+++
commons/proper/digester/trunk/src/main/java/org/apache/commons/digester3/SetNextRule.java
Mon Jun 27 18:35:41 2011
@@ -57,9 +57,9 @@ public class SetNextRule
* 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 @@ public class SetNextRule
*
* @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 )
{
Modified:
commons/proper/digester/trunk/src/main/java/org/apache/commons/digester3/SetRootRule.java
URL:
http://svn.apache.org/viewvc/commons/proper/digester/trunk/src/main/java/org/apache/commons/digester3/SetRootRule.java?rev=1140259&r1=1140258&r2=1140259&view=diff
==============================================================================
---
commons/proper/digester/trunk/src/main/java/org/apache/commons/digester3/SetRootRule.java
(original)
+++
commons/proper/digester/trunk/src/main/java/org/apache/commons/digester3/SetRootRule.java
Mon Jun 27 18:35:41 2011
@@ -51,9 +51,9 @@ public class SetRootRule
* 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 @@ public class SetRootRule
*
* @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 )
{
Modified:
commons/proper/digester/trunk/src/main/java/org/apache/commons/digester3/SetTopRule.java
URL:
http://svn.apache.org/viewvc/commons/proper/digester/trunk/src/main/java/org/apache/commons/digester3/SetTopRule.java?rev=1140259&r1=1140258&r2=1140259&view=diff
==============================================================================
---
commons/proper/digester/trunk/src/main/java/org/apache/commons/digester3/SetTopRule.java
(original)
+++
commons/proper/digester/trunk/src/main/java/org/apache/commons/digester3/SetTopRule.java
Mon Jun 27 18:35:41 2011
@@ -51,9 +51,9 @@ public class SetTopRule
* 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 )
{
Modified:
commons/proper/digester/trunk/src/main/java/org/apache/commons/digester3/annotations/handlers/AbstractMethodHandler.java
URL:
http://svn.apache.org/viewvc/commons/proper/digester/trunk/src/main/java/org/apache/commons/digester3/annotations/handlers/AbstractMethodHandler.java?rev=1140259&r1=1140258&r2=1140259&view=diff
==============================================================================
---
commons/proper/digester/trunk/src/main/java/org/apache/commons/digester3/annotations/handlers/AbstractMethodHandler.java
(original)
+++
commons/proper/digester/trunk/src/main/java/org/apache/commons/digester3/annotations/handlers/AbstractMethodHandler.java
Mon Jun 27 18:35:41 2011
@@ -100,7 +100,8 @@ abstract class AbstractMethodHandler<A e
}
}
- 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() ) )
{