You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@pivot.apache.org by gb...@apache.org on 2010/10/22 14:41:13 UTC

svn commit: r1026311 - /pivot/trunk/wtk/src/org/apache/pivot/wtk/TablePane.java

Author: gbrown
Date: Fri Oct 22 12:41:13 2010
New Revision: 1026311

URL: http://svn.apache.org/viewvc?rev=1026311&view=rev
Log:
Remove setCellComponent() from TablePane.

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

Modified: pivot/trunk/wtk/src/org/apache/pivot/wtk/TablePane.java
URL: http://svn.apache.org/viewvc/pivot/trunk/wtk/src/org/apache/pivot/wtk/TablePane.java?rev=1026311&r1=1026310&r2=1026311&view=diff
==============================================================================
--- pivot/trunk/wtk/src/org/apache/pivot/wtk/TablePane.java (original)
+++ pivot/trunk/wtk/src/org/apache/pivot/wtk/TablePane.java Fri Oct 22 12:41:13 2010
@@ -878,23 +878,6 @@ public class TablePane extends Container
     }
 
     /**
-     * Sets the component at the specified cell in this table pane.
-     *
-     * @param row
-     * The row index of the cell
-     *
-     * @param column
-     * The column index of the cell
-     *
-     * @param component
-     * The component to place in the specified cell, or <tt>null</tt> to empty
-     * the cell
-     */
-    public void setCellComponent(int row, int column, Component component) {
-        rows.get(row).update(column, component);
-    }
-
-    /**
      * Overrides the base method to check whether or not a cell component is
      * being removed, and fires the appropriate event in that case.
      *