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

/openjdk7/jdk/src/share/classes/javax/swing/plaf/basic/
H A DBasicMenuItemUI.java51 protected Color selectionBackground; field in class:BasicMenuItemUI
149 if (selectionBackground == null ||
150 selectionBackground instanceof UIResource) {
151 selectionBackground =
152 UIManager.getColor(prefix + ".selectionBackground");
476 selectionBackground, selectionForeground,
H A DBasicProgressBarUI.java50 // over a filled area of the progress bar. The "selectionBackground"
52 private Color selectionForeground, selectionBackground; field in class:BasicProgressBarUI
164 selectionBackground = UIManager.getColor("ProgressBar.selectionBackground");
321 * The "selectionBackground" is the color of the text when it is painted
325 return selectionBackground;
/openjdk7/jdk/src/share/classes/javax/swing/
H A DJList.java320 private Color selectionBackground; field in class:JList
844 return selectionBackground;
860 * @param selectionBackground the {@code Color} to use for the
873 public void setSelectionBackground(Color selectionBackground) { argument
874 Color oldValue = this.selectionBackground;
875 this.selectionBackground = selectionBackground;
876 firePropertyChange("selectionBackground", oldValue, selectionBackground);
2835 String selectionBackgroundString = (selectionBackground !
[all...]
H A DJTable.java374 protected Color selectionBackground; field in class:JTable
2518 return selectionBackground;
2530 * @param selectionBackground the <code>Color</code> to use for the background
2541 public void setSelectionBackground(Color selectionBackground) { argument
2542 Color old = this.selectionBackground;
2543 this.selectionBackground = selectionBackground;
2544 firePropertyChange("selectionBackground", old, selectionBackground);
5920 String selectionBackgroundString = (selectionBackground !
[all...]

Completed in 88 milliseconds