File tree Expand file tree Collapse file tree 2 files changed +5
-5
lines changed
src/main/java/org/apache/commons/beanutils Expand file tree Collapse file tree 2 files changed +5
-5
lines changed Original file line number Diff line number Diff line change 1919import java .util .Map ;
2020
2121/**
22- * <p>Provides a <em>light weight </em> <code>DynaBean</code> facade to a <code>Map</code>
22+ * <p>Provides a <em>lightweight </em> <code>DynaBean</code> facade to a <code>Map</code>
2323 * with <em>lazy</em> map/list processing.</p>
2424 *
25- * <p>Its a <em>light weight </em> <code>DynaBean</code> implementation because there is no
25+ * <p>Its a <em>lightweight </em> <code>DynaBean</code> implementation because there is no
2626 * actual <code>DynaClass</code> associated with this <code>DynaBean</code> - in fact
2727 * it implements the <code>DynaClass</code> interface itself providing <em>pseudo</em> DynaClass
2828 * behavior from the actual values stored in the <code>Map</code>.</p>
Original file line number Diff line number Diff line change 645645 * <ul>
646646 * <li>1. <a href="#LazyDynaBean">LazyDynaBean</a> - A <em>Lazy</em>
647647 * {@link org.apache.commons.beanutils.DynaBean}</li>
648- * <li>2. <a href="#LazyDynaMap">LazyDynaMap</a> - A <em>light weight </em>
648+ * <li>2. <a href="#LazyDynaMap">LazyDynaMap</a> - A <em>lightweight </em>
649649 * {@link org.apache.commons.beanutils.DynaBean} facade to a Map
650650 * with <em>lazy</em> map/list processing</li>
651651 * <li>3. <a href="#LazyDynaList">LazyDynaList</a> - A <em>lazy list</em>
708708 * dynaBean.set("address", 2, addressLine3); // indexed
709709 * </pre>
710710 *
711- * <p><strong>2. {@link org.apache.commons.beanutils.LazyDynaMap}</strong> is a <em>light weight </em>
711+ * <p><strong>2. {@link org.apache.commons.beanutils.LazyDynaMap}</strong> is a <em>lightweight </em>
712712 * <code>DynaBean</code> facade to a <code>Map</code> with all the usual <em>lazy</em> features. Its
713- * <em>light weight </em> because it doesn't have an associated <code>DynaClass</code> containing all the properties.
713+ * <em>lightweight </em> because it doesn't have an associated <code>DynaClass</code> containing all the properties.
714714 * In fact it actually implements the <code>DynaClass</code> interface itself (and <code>MutableDynaClass</code>)
715715 * and derives all the <em>DynaClass</em> information from the actual contents of the <code>Map</code>. A
716716 * <code>LazyDynaMap</code> can be created around an existing <code>Map</code> or can instantiate its own
You can’t perform that action at this time.
0 commit comments