Author: ivaynberg
Date: Wed Dec 13 17:17:16 2006
New Revision: 486922
URL: http://svn.apache.org/viewvc?view=rev&rev=486922
Log:
WICKET-150: javadoc hook to wicket.markup.repeater
Modified:
incubator/wicket/trunk/wicket/src/main/java/wicket/markup/html/list/ListView.java
Modified:
incubator/wicket/trunk/wicket/src/main/java/wicket/markup/html/list/ListView.java
URL:
http://svn.apache.org/viewvc/incubator/wicket/trunk/wicket/src/main/java/wicket/markup/html/list/ListView.java?view=diff&rev=486922&r1=486921&r2=486922
==============================================================================
---
incubator/wicket/trunk/wicket/src/main/java/wicket/markup/html/list/ListView.java
(original)
+++
incubator/wicket/trunk/wicket/src/main/java/wicket/markup/html/list/ListView.java
Wed Dec 13 17:17:16 2006
@@ -30,16 +30,22 @@
import wicket.version.undo.Change;
/**
+ * A ListView is a repeater that makes it easy to display/work with [EMAIL
PROTECTED] List}s.
+ * However, there are situations where it is necessary to work with other
+ * collection types, for repeaters that might work better with non-list or
+ * database-driven collections see the wicket.markup.repeater package.
+ *
+ *
* A ListView holds ListItem children. Items can be re-ordered and deleted,
* either one at a time or many at a time.
* <p>
* Example:
*
* <pre>
- * <tbody>
- * <tr wicket:id="rows" class="even">
- * <td><span wicket:id="id">Test
ID</span></td>
- * ...
+ * <tbody>
+ * <tr wicket:id="rows" class="even">
+ * <td><span wicket:id="id">Test
ID</span></td>
+ * ...
* </pre>
*
* <p>