You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@myfaces.apache.org by mm...@apache.org on 2005/11/11 01:14:11 UTC

svn commit: r332405 - /myfaces/api/trunk/src/java/javax/faces/component/UIData.java

Author: mmarinschek
Date: Thu Nov 10 16:14:07 2005
New Revision: 332405

URL: http://svn.apache.org/viewcvs?rev=332405&view=rev
Log:
tidying up comment.

Modified:
    myfaces/api/trunk/src/java/javax/faces/component/UIData.java

Modified: myfaces/api/trunk/src/java/javax/faces/component/UIData.java
URL: http://svn.apache.org/viewcvs/myfaces/api/trunk/src/java/javax/faces/component/UIData.java?rev=332405&r1=332404&r2=332405&view=diff
==============================================================================
--- myfaces/api/trunk/src/java/javax/faces/component/UIData.java (original)
+++ myfaces/api/trunk/src/java/javax/faces/component/UIData.java Thu Nov 10 16:14:07 2005
@@ -39,10 +39,10 @@
 import javax.faces.model.ScalarDataModel;
 import javax.servlet.jsp.jstl.sql.Result;
 
-/*
- * ================================================
+/**<h1>
  * Implementation Notes
- *
+ * </h1>
+ * <p>
  * Each of the UIColumn children of this component has a few component
  * children of its own to render the contents of the table cell. However
  * there can be a very large number of rows in a table, so it isn't
@@ -54,10 +54,12 @@
  * state. This allows a single set of real objects to represent multiple
  * objects which have the same types but potentially different internal
  * state.
- *
+ * </p>
+ * <p>
  * When a row is selected for the first time, its state is set to a
  * clean "initial" state.
- *
+ * </p>
+ * <p>
  * Note that a table is a "naming container", so that components
  * within the table have their ids prefixed with the id of the
  * table. Actually, when setRowIndex has been called on a table with
@@ -66,7 +68,8 @@
  * child components which call component.getClientId automatically
  * get ids of form "zzz_n:childId" thus ensuring that components in
  * different rows of the table get different ids.
- *
+ * </p>
+ * <p>
  * When decoding a submitted page, this class iterates over all
  * its possible rowIndex values, restoring the appropriate serialized
  * row state then calling processDecodes on the child components. Because
@@ -79,6 +82,7 @@
  * data model's rowData points to the model object associated with the
  * row currently being decoded. Exactly the same process applies for
  * the later validation and updateModel phases.
+ * </p>
  * @author Manfred Geiler (latest modification by $Author$)
  * @version $Revision$ $Date$
  */