You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@pivot.apache.org by tv...@apache.org on 2010/03/25 19:20:54 UTC

svn commit: r927528 - /pivot/trunk/wtk/src/org/apache/pivot/wtk/TableView.java

Author: tvolkert
Date: Thu Mar 25 18:20:54 2010
New Revision: 927528

URL: http://svn.apache.org/viewvc?rev=927528&view=rev
Log:
Trivial updates to TableView

Modified:
    pivot/trunk/wtk/src/org/apache/pivot/wtk/TableView.java

Modified: pivot/trunk/wtk/src/org/apache/pivot/wtk/TableView.java
URL: http://svn.apache.org/viewvc/pivot/trunk/wtk/src/org/apache/pivot/wtk/TableView.java?rev=927528&r1=927527&r2=927528&view=diff
==============================================================================
--- pivot/trunk/wtk/src/org/apache/pivot/wtk/TableView.java (original)
+++ pivot/trunk/wtk/src/org/apache/pivot/wtk/TableView.java Thu Mar 25 18:20:54 2010
@@ -818,7 +818,7 @@ public class TableView extends Component
         /**
          * Converts table data to a context value.
          *
-         * @param list
+         * @param tableData
          */
         public Object valueOf(List<?> tableData);
     }
@@ -2089,6 +2089,7 @@ public class TableView extends Component
 
     public void setTableDataKey(String tableDataKey) {
         String previousTableDataKey = this.tableDataKey;
+
         if (previousTableDataKey != tableDataKey) {
             this.tableDataKey = tableDataKey;
             tableViewBindingListeners.tableDataKeyChanged(this, previousTableDataKey);