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

/openjdk7/jdk/src/share/classes/javax/swing/
H A DJTable.java299 protected Color gridColor; field in class:JTable
1056 * Sets the color used to draw grid lines to <code>gridColor</code> and redisplays.
1059 * @param gridColor the new color of the grid lines
1060 * @exception IllegalArgumentException if <code>gridColor</code> is <code>null</code>
1066 public void setGridColor(Color gridColor) { argument
1067 if (gridColor == null) {
1070 Color old = this.gridColor;
1071 this.gridColor = gridColor;
1072 firePropertyChange("gridColor", ol
[all...]

Completed in 44 milliseconds