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