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>
- *  &lt;tbody&gt;
- *    &lt;tr wicket:id=&quot;rows&quot; class=&quot;even&quot;&gt;
- *    &lt;td&gt;&lt;span wicket:id=&quot;id&quot;&gt;Test 
ID&lt;/span&gt;&lt;/td&gt;
- *  ...    
+ *    &lt;tbody&gt;
+ *      &lt;tr wicket:id=&quot;rows&quot; class=&quot;even&quot;&gt;
+ *      &lt;td&gt;&lt;span wicket:id=&quot;id&quot;&gt;Test 
ID&lt;/span&gt;&lt;/td&gt;
+ *    ...    
  * </pre>
  * 
  * <p>


Reply via email to