File tree Expand file tree Collapse file tree 2 files changed +3
-3
lines changed
src/main/java/org/apache/commons/beanutils Expand file tree Collapse file tree 2 files changed +3
-3
lines changed Original file line number Diff line number Diff line change 6161 * a property with an <code>ArrayList</code> type to the <code>DynaClass</code> when
6262 * the <code>set(name, index, value)</code> method is called.
6363 * It will also instantiate a new <code>ArrayList</code> and automatically <em>grow</em>
64- * the <code>List</code> so that it is big enough to accomodate the index being set.
64+ * the <code>List</code> so that it is big enough to accommodate the index being set.
6565 * <code>ArrayList</code> is the default indexed property that LazyDynaBean uses but
6666 * this can be easily changed by overriding the <code>defaultIndexedProperty(name)</code>
6767 * method.</p>
7474 * <code>null</code> in the <code>LazyDynaBean</code>, then it will instantiate a
7575 * new <code>List</code> or <code>Array</code> as specified by the property's type
7676 * in the <code>DynaClass</code> and automatically <em>grow</em> the <code>List</code>
77- * or <code>Array</code> so that it is big enough to accomodate the index being set.</p>
77+ * or <code>Array</code> so that it is big enough to accommodate the index being set.</p>
7878 *
7979 * <code>DynaBean myBean = new LazyDynaBean();</code></br>
8080 * <code>MutableDynaClass myClass = (MutableDynaClass)myBean.getDynaClass();</code></br>
Original file line number Diff line number Diff line change 677677 * a property which doesn't exist to the DynaClass when
678678 * the <code>set(name, value)</code> method is called.</li>
679679 * <li><strong><em>Lazy</em> List/Array growth</strong> - If an <em>indexed</em> property is not large
680- * enough to accomodate the <code>index</code> being set then the <code>List</code> or
680+ * enough to accommodate the <code>index</code> being set then the <code>List</code> or
681681 * <code>Array</code> is automatically <em>grown</em> so that it is.</li>
682682 * <li><strong><em>Lazy</em> List/Array instantiation</strong> - if an <em>indexed</em>
683683 * property doesn't exist then calling the {@link org.apache.commons.beanutils.DynaBean DynaBean's}
You can’t perform that action at this time.
0 commit comments