Return-Path: X-Original-To: apmail-commons-commits-archive@minotaur.apache.org Delivered-To: apmail-commons-commits-archive@minotaur.apache.org Received: from mail.apache.org (hermes.apache.org [140.211.11.3]) by minotaur.apache.org (Postfix) with SMTP id 4A57E10A3A for ; Sun, 10 Nov 2013 18:23:21 +0000 (UTC) Received: (qmail 24384 invoked by uid 500); 10 Nov 2013 18:23:20 -0000 Delivered-To: apmail-commons-commits-archive@commons.apache.org Received: (qmail 24329 invoked by uid 500); 10 Nov 2013 18:23:20 -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 24322 invoked by uid 99); 10 Nov 2013 18:23:20 -0000 Received: from athena.apache.org (HELO athena.apache.org) (140.211.11.136) by apache.org (qpsmtpd/0.29) with ESMTP; Sun, 10 Nov 2013 18:23:20 +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; Sun, 10 Nov 2013 18:23:18 +0000 Received: from eris.apache.org (localhost [127.0.0.1]) by eris.apache.org (Postfix) with ESMTP id A15FE23888E7; Sun, 10 Nov 2013 18:22:58 +0000 (UTC) Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit Subject: svn commit: r1540504 - /commons/proper/beanutils/trunk/src/main/java/org/apache/commons/beanutils/ Date: Sun, 10 Nov 2013 18:22:58 -0000 To: commits@commons.apache.org From: niallp@apache.org X-Mailer: svnmailer-1.0.9 Message-Id: <20131110182258.A15FE23888E7@eris.apache.org> X-Virus-Checked: Checked by ClamAV on apache.org Author: niallp Date: Sun Nov 10 18:22:57 2013 New Revision: 1540504 URL: http://svn.apache.org/r1540504 Log: Javadoc only - fix HTML formatting issues Modified: commons/proper/beanutils/trunk/src/main/java/org/apache/commons/beanutils/BasicDynaBean.java commons/proper/beanutils/trunk/src/main/java/org/apache/commons/beanutils/BeanPropertyValueEqualsPredicate.java commons/proper/beanutils/trunk/src/main/java/org/apache/commons/beanutils/ConvertUtilsBean.java commons/proper/beanutils/trunk/src/main/java/org/apache/commons/beanutils/LazyDynaBean.java commons/proper/beanutils/trunk/src/main/java/org/apache/commons/beanutils/LazyDynaClass.java commons/proper/beanutils/trunk/src/main/java/org/apache/commons/beanutils/LazyDynaMap.java commons/proper/beanutils/trunk/src/main/java/org/apache/commons/beanutils/MappedPropertyDescriptor.java Modified: commons/proper/beanutils/trunk/src/main/java/org/apache/commons/beanutils/BasicDynaBean.java URL: http://svn.apache.org/viewvc/commons/proper/beanutils/trunk/src/main/java/org/apache/commons/beanutils/BasicDynaBean.java?rev=1540504&r1=1540503&r2=1540504&view=diff ============================================================================== --- commons/proper/beanutils/trunk/src/main/java/org/apache/commons/beanutils/BasicDynaBean.java (original) +++ commons/proper/beanutils/trunk/src/main/java/org/apache/commons/beanutils/BasicDynaBean.java Sun Nov 10 18:22:57 2013 @@ -107,7 +107,7 @@ public class BasicDynaBean implements Dy * * @param name Name of the property to check * @param key Name of the key to check - * @return true if the mapped property contains a value for + * @return true if the mapped property contains a value for * the specified key, otherwise false * * @exception IllegalArgumentException if there is no property Modified: commons/proper/beanutils/trunk/src/main/java/org/apache/commons/beanutils/BeanPropertyValueEqualsPredicate.java URL: http://svn.apache.org/viewvc/commons/proper/beanutils/trunk/src/main/java/org/apache/commons/beanutils/BeanPropertyValueEqualsPredicate.java?rev=1540504&r1=1540503&r2=1540504&view=diff ============================================================================== --- commons/proper/beanutils/trunk/src/main/java/org/apache/commons/beanutils/BeanPropertyValueEqualsPredicate.java (original) +++ commons/proper/beanutils/trunk/src/main/java/org/apache/commons/beanutils/BeanPropertyValueEqualsPredicate.java Sun Nov 10 18:22:57 2013 @@ -87,7 +87,7 @@ import java.lang.reflect.InvocationTarge * * // search the Collection * CollectionUtils.find( peopleCollection, predicate ); - * + * *

*

* This would search a Collection of person objects and return the first object whose Modified: commons/proper/beanutils/trunk/src/main/java/org/apache/commons/beanutils/ConvertUtilsBean.java URL: http://svn.apache.org/viewvc/commons/proper/beanutils/trunk/src/main/java/org/apache/commons/beanutils/ConvertUtilsBean.java?rev=1540504&r1=1540503&r2=1540504&view=diff ============================================================================== --- commons/proper/beanutils/trunk/src/main/java/org/apache/commons/beanutils/ConvertUtilsBean.java (original) +++ commons/proper/beanutils/trunk/src/main/java/org/apache/commons/beanutils/ConvertUtilsBean.java Sun Nov 10 18:22:57 2013 @@ -618,7 +618,7 @@ public class ConvertUtilsBean { * N.B. This values is ignored if throwException is true * @param defaultArraySize The size of the default array value for array converters * (N.B. This values is ignored if throwException is true). - * Specifying a value less than zero causes a null value to be used for + * Specifying a value less than zero causes a null value to be used for * the default. */ public void register(boolean throwException, boolean defaultNull, int defaultArraySize) { Modified: commons/proper/beanutils/trunk/src/main/java/org/apache/commons/beanutils/LazyDynaBean.java URL: http://svn.apache.org/viewvc/commons/proper/beanutils/trunk/src/main/java/org/apache/commons/beanutils/LazyDynaBean.java?rev=1540504&r1=1540503&r2=1540504&view=diff ============================================================================== --- commons/proper/beanutils/trunk/src/main/java/org/apache/commons/beanutils/LazyDynaBean.java (original) +++ commons/proper/beanutils/trunk/src/main/java/org/apache/commons/beanutils/LazyDynaBean.java Sun Nov 10 18:22:57 2013 @@ -253,7 +253,7 @@ public class LazyDynaBean implements Dyn * * @param name Name of the property to check * @param key Name of the key to check - * @return true if the mapped property contains a value for + * @return true if the mapped property contains a value for * the specified key, otherwise false * * @exception IllegalArgumentException if no property name is specified @@ -875,7 +875,7 @@ public class LazyDynaBean implements Dyn /** * Indicates if there is a property with the specified name. * @param name The name of the property to check - * @return true if there is a property of the + * @return true if there is a property of the * specified name, otherwise false */ protected boolean isDynaProperty(String name) { @@ -899,7 +899,7 @@ public class LazyDynaBean implements Dyn * * @param dest Destination class * @param source Source class - * @return true if the source class is assignable to the + * @return true if the source class is assignable to the * destination class, otherwise false */ protected boolean isAssignable(Class dest, Class source) { Modified: commons/proper/beanutils/trunk/src/main/java/org/apache/commons/beanutils/LazyDynaClass.java URL: http://svn.apache.org/viewvc/commons/proper/beanutils/trunk/src/main/java/org/apache/commons/beanutils/LazyDynaClass.java?rev=1540504&r1=1540503&r2=1540504&view=diff ============================================================================== --- commons/proper/beanutils/trunk/src/main/java/org/apache/commons/beanutils/LazyDynaClass.java (original) +++ commons/proper/beanutils/trunk/src/main/java/org/apache/commons/beanutils/LazyDynaClass.java Sun Nov 10 18:22:57 2013 @@ -131,7 +131,7 @@ public class LazyDynaClass extends Basic * the getDynaProperty(name) method if the property * doesn't exist. * - * @return true if a null {@link DynaProperty} + * @return true if a null {@link DynaProperty} * should be returned if the property doesn't exist, otherwise * false if a new {@link DynaProperty} should be created. */ @@ -143,7 +143,7 @@ public class LazyDynaClass extends Basic * Set whether this DynaClass should return a null from * the getDynaProperty(name) method if the property * doesn't exist. - * @param returnNull true if a null {@link DynaProperty} + * @param returnNull true if a null {@link DynaProperty} * should be returned if the property doesn't exist, otherwise * false if a new {@link DynaProperty} should be created. */ @@ -341,7 +341,7 @@ public class LazyDynaClass extends Basic * returnNull indicator).

* * @param name The name of the property to check - * @return true if there is a property of the + * @return true if there is a property of the * specified name, otherwise false * @exception IllegalArgumentException if no property name is specified */ Modified: commons/proper/beanutils/trunk/src/main/java/org/apache/commons/beanutils/LazyDynaMap.java URL: http://svn.apache.org/viewvc/commons/proper/beanutils/trunk/src/main/java/org/apache/commons/beanutils/LazyDynaMap.java?rev=1540504&r1=1540503&r2=1540504&view=diff ============================================================================== --- commons/proper/beanutils/trunk/src/main/java/org/apache/commons/beanutils/LazyDynaMap.java (original) +++ commons/proper/beanutils/trunk/src/main/java/org/apache/commons/beanutils/LazyDynaMap.java Sun Nov 10 18:22:57 2013 @@ -434,7 +434,7 @@ public class LazyDynaMap extends LazyDyn * the getDynaProperty(name) method if the property * doesn't exist. * - * @return true if a null {@link DynaProperty} + * @return true if a null {@link DynaProperty} * should be returned if the property doesn't exist, otherwise * false if a new {@link DynaProperty} should be created. */ @@ -447,7 +447,7 @@ public class LazyDynaMap extends LazyDyn * the getDynaProperty(name) method if the property * doesn't exist. * - * @param returnNull true if a null {@link DynaProperty} + * @param returnNull true if a null {@link DynaProperty} * should be returned if the property doesn't exist, otherwise * false if a new {@link DynaProperty} should be created. */ Modified: commons/proper/beanutils/trunk/src/main/java/org/apache/commons/beanutils/MappedPropertyDescriptor.java URL: http://svn.apache.org/viewvc/commons/proper/beanutils/trunk/src/main/java/org/apache/commons/beanutils/MappedPropertyDescriptor.java?rev=1540504&r1=1540503&r2=1540504&view=diff ============================================================================== --- commons/proper/beanutils/trunk/src/main/java/org/apache/commons/beanutils/MappedPropertyDescriptor.java (original) +++ commons/proper/beanutils/trunk/src/main/java/org/apache/commons/beanutils/MappedPropertyDescriptor.java Sun Nov 10 18:22:57 2013 @@ -34,16 +34,14 @@ import java.lang.reflect.Modifier; * Such property values are typically stored in a Map collection. * For this class to work properly, a mapped value must have * getter and setter methods of the form - *

getProperty(String key) and - *

setProperty(String key, Object value), + *

getProperty(String key) and + *

setProperty(String key, Object value), *

where Property must be replaced * by the name of the property. * @see java.beans.PropertyDescriptor * * @version $Id$ */ - - public class MappedPropertyDescriptor extends PropertyDescriptor { // ----------------------------------------------------- Instance Variables