Searched refs:showVerticalLines (Results 1 - 1 of 1) sorted by relevance

/openjdk7/jdk/src/share/classes/javax/swing/
H A DJTable.java304 /** The table draws vertical lines between cells if <code>showVerticalLines</code> is true. */
305 protected boolean showVerticalLines; field in class:JTable
1092 * in two variables -- <code>showHorizontalLines</code> and <code>showVerticalLines</code> --
1133 * If <code>showVerticalLines</code> is true it does; if it is false it doesn't.
1135 * @param showVerticalLines true if table view should draw vertical lines
1143 public void setShowVerticalLines(boolean showVerticalLines) { argument
1144 boolean old = this.showVerticalLines;
1145 this.showVerticalLines = showVerticalLines;
1146 firePropertyChange("showVerticalLines", ol
[all...]

Completed in 36 milliseconds