Searched defs:showHorizontalLines (Results 1 - 1 of 1) sorted by relevance

/openjdk7/jdk/src/share/classes/javax/swing/
H A DJTable.java301 /** The table draws horizontal lines between cells if <code>showHorizontalLines</code> is true. */
302 protected boolean showHorizontalLines; field in class:JTable
1092 * in two variables -- <code>showHorizontalLines</code> and <code>showVerticalLines</code> --
1112 * If <code>showHorizontalLines</code> is true it does; if it is false it doesn't.
1114 * @param showHorizontalLines true if table view should draw horizontal lines
1122 public void setShowHorizontalLines(boolean showHorizontalLines) { argument
1123 boolean old = this.showHorizontalLines;
1124 this.showHorizontalLines = showHorizontalLines;
1125 firePropertyChange("showHorizontalLines", ol
[all...]

Completed in 43 milliseconds