Author: simonetripodi Date: Mon May 30 09:53:10 2011 New Revision: 1129098 URL: http://svn.apache.org/viewvc?rev=1129098&view=rev Log: added missing javadoc
Modified: commons/sandbox/digester3/trunk/src/main/java/org/apache/commons/digester3/binder/NestedPropertiesBuilder.java Modified: commons/sandbox/digester3/trunk/src/main/java/org/apache/commons/digester3/binder/NestedPropertiesBuilder.java URL: http://svn.apache.org/viewvc/commons/sandbox/digester3/trunk/src/main/java/org/apache/commons/digester3/binder/NestedPropertiesBuilder.java?rev=1129098&r1=1129097&r2=1129098&view=diff ============================================================================== --- commons/sandbox/digester3/trunk/src/main/java/org/apache/commons/digester3/binder/NestedPropertiesBuilder.java (original) +++ commons/sandbox/digester3/trunk/src/main/java/org/apache/commons/digester3/binder/NestedPropertiesBuilder.java Mon May 30 09:53:10 2011 @@ -89,7 +89,8 @@ public final class NestedPropertiesBuild * and trailing whitespace removed before assignment to the target * object. * - * @param trimData + * @param trimData Flag to set any text within child elements will have leading + * and trailing whitespace removed * @return this builder instance */ public NestedPropertiesBuilder trimData( boolean trimData ) @@ -99,10 +100,12 @@ public final class NestedPropertiesBuild } /** - * + * Determines whether an error is reported when a nested element is encountered for which there is no corresponding + * property-setter method. * - * @param allowUnknownChildElements - * @return + * @param allowUnknownChildElements flag to ignore any child element for which there is no corresponding + * object property + * @return this builder instance */ public NestedPropertiesBuilder allowUnknownChildElements( boolean allowUnknownChildElements ) {