Author: mkirby
Date: 2011-10-12 23:34:15 -0700 (Wed, 12 Oct 2011)
New Revision: 27156

Modified:
   
core3/api/trunk/swing-application-api/src/main/java/org/cytoscape/application/swing/ViewUpdater.java
Log:
Fixed Javadoc.

Modified: 
core3/api/trunk/swing-application-api/src/main/java/org/cytoscape/application/swing/ViewUpdater.java
===================================================================
--- 
core3/api/trunk/swing-application-api/src/main/java/org/cytoscape/application/swing/ViewUpdater.java
        2011-10-13 01:12:03 UTC (rev 27155)
+++ 
core3/api/trunk/swing-application-api/src/main/java/org/cytoscape/application/swing/ViewUpdater.java
        2011-10-13 06:34:15 UTC (rev 27156)
@@ -39,23 +39,25 @@
 /**
  * A utility class that provides an implementation of {@link RowsSetListener}
  * for a particular column and {@link VisualProperty}.
+ * @param <S> The generic type of this ViewUpdater.
  */
 public class ViewUpdater<S> implements RowsSetListener {
 
+       /** The {@link VisualProperty} that the {@link RowsSetListener} is 
provided for. */
        protected final VisualProperty<S> vp;
+       /** The name of the column that the {@link RowsSetListener} is provided 
for.*/
        protected final String columnName;
        private final Map<CyRow, View<?>> rowViewMap;
 
        /**
         * Constructor.
         * 
-        * @param view The view that the visual property should be set whne the 
row
-        * is changed.
         * @param vp The visual property that should be set on the view when 
the row
         * is changed.
-        * @param row The row that is being listened to.
         * @param columnName The name of the column within the row that is being
         * listened to.
+        * @param rowViewMap a map between the row that is being listened to 
and the
+        * view that the visual property should be set when the row is changed.
         */
        public ViewUpdater(VisualProperty<S> vp, String columnName, Map<CyRow, 
View<?>> rowViewMap) {
                this.vp = vp;

-- 
You received this message because you are subscribed to the Google Groups 
"cytoscape-cvs" group.
To post to this group, send email to [email protected].
To unsubscribe from this group, send email to 
[email protected].
For more options, visit this group at 
http://groups.google.com/group/cytoscape-cvs?hl=en.

Reply via email to