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

/openjdk7/jdk/src/share/classes/javax/swing/plaf/synth/
H A DSynthTableUI.java154 Color gridColor = table.getGridColor();
155 if (gridColor == null || gridColor instanceof UIResource) {
156 gridColor = (Color)style.get(context, "Table.gridColor");
157 if (gridColor == null) {
158 gridColor = style.getColor(context, ColorType.FOREGROUND);
160 table.setGridColor(gridColor == null ? new ColorUIResource(Color.GRAY) : gridColor);
/openjdk7/jdk/src/share/classes/javax/swing/plaf/basic/
H A DBasicTableUI.java1427 Color gridColor = table.getGridColor();
1428 if (gridColor == null || gridColor instanceof UIResource) {
1429 gridColor = UIManager.getColor("Table.gridColor");
1430 table.setGridColor(gridColor != null ? gridColor : Color.GRAY);
/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 35 milliseconds