fix javadoc
authorKevin Lamonte <kevin.lamonte@gmail.com>
Mon, 29 Jul 2019 01:59:11 +0000 (20:59 -0500)
committerKevin Lamonte <kevin.lamonte@gmail.com>
Mon, 29 Jul 2019 01:59:11 +0000 (20:59 -0500)
src/jexer/TTableWidget.java
src/jexer/demos/DemoTableWindow.java

index c8eeb5722c10adcb5dfcf7978cfd583cb7b80032..3052ae95811a21a0e6cd1bf85dc9918dc5b71365 100644 (file)
@@ -943,43 +943,6 @@ public class TTableWidget extends TWidget {
         return rows.size();
     }
 
-    /**
-     * Get the full horizontal width of this table.
-     *
-     * @return the width required to render the entire table
-     */
-    private int getMaximumWidth() {
-        int totalWidth = 0;
-        if (showRowLabels == true) {
-            // For now, all row labels are 8 cells wide.  TODO: make this
-            // adjustable.
-            totalWidth += ROW_LABEL_WIDTH;
-        }
-        for (Cell cell: getSelectedRow().cells) {
-            totalWidth += cell.getWidth() + 1;
-        }
-        return totalWidth;
-    }
-
-    /**
-     * Get the full vertical height of this table.
-     *
-     * @return the height required to render the entire table
-     */
-    private int getMaximumHeight() {
-        int totalHeight = 0;
-        if (showColumnLabels == true) {
-            // For now, all column labels are 1 cell tall.  TODO: make this
-            // adjustable.
-            totalHeight += 1;
-        }
-        for (Cell cell: getSelectedColumn().cells) {
-            totalHeight += cell.getHeight();
-            // TODO: handle top/bottom borders.
-        }
-        return totalHeight;
-    }
-
     /**
      * Align the grid so that the selected cell is fully visible.
      *
index d425c6683063005be6bc4caa6e672b9cbd18ed5d..85da32aaf0c6deef861ff62a5c5ad6b2d5330740 100644 (file)
@@ -66,7 +66,6 @@ public class DemoTableWindow extends TWindow {
      *
      * @param parent the main application
      * @param title the text string
-     * @param text the text string
      */
     public DemoTableWindow(final TApplication parent, final String title) {