Java Code Examples for java.awt.Color#toString()
The following examples show how to use
java.awt.Color#toString() .
These examples are extracted from open source projects.
You can vote up the ones you like or vote down the ones you don't like,
and go to the original project or source file by following the links above each example. You may check out the related API usage on the sidebar.
Example 1
Source Project: dragonwell8_jdk File: Test7022041.java License: GNU General Public License v2.0 | 5 votes |
/** * Check behaviour of method TitledBorder.getTitleColor() */ private static void checkTitleColor() { TitledBorder titledBorder = new TitledBorder(new EmptyBorder(1, 1, 1, 1)); Color defaultColor = UIManager.getLookAndFeelDefaults().getColor("TitledBorder.titleColor"); Color titledBorderColor = titledBorder.getTitleColor(); // check default configuration if (defaultColor == null) { if (titledBorderColor == null) { return; } else { throw new RuntimeException("TitledBorder default color should be null"); } } if (!defaultColor.equals(titledBorderColor)) { throw new RuntimeException("L&F default color " + defaultColor.toString() + " differs from TitledBorder color " + titledBorderColor.toString()); } // title color is explicitly specified Color color = Color.green; titledBorder.setTitleColor(color); if (!color.equals(titledBorder.getTitleColor())) { throw new RuntimeException("TitledBorder color should be " + color.toString()); } // title color is unspecified titledBorder.setTitleColor(null); if (!defaultColor.equals(titledBorder.getTitleColor())) { throw new RuntimeException("L&F default color " + defaultColor.toString() + " differs from TitledBorder color " + titledBorderColor.toString()); } }
Example 2
Source Project: TencentKona-8 File: Test7022041.java License: GNU General Public License v2.0 | 5 votes |
/** * Check behaviour of method TitledBorder.getTitleColor() */ private static void checkTitleColor() { TitledBorder titledBorder = new TitledBorder(new EmptyBorder(1, 1, 1, 1)); Color defaultColor = UIManager.getLookAndFeelDefaults().getColor("TitledBorder.titleColor"); Color titledBorderColor = titledBorder.getTitleColor(); // check default configuration if (defaultColor == null) { if (titledBorderColor == null) { return; } else { throw new RuntimeException("TitledBorder default color should be null"); } } if (!defaultColor.equals(titledBorderColor)) { throw new RuntimeException("L&F default color " + defaultColor.toString() + " differs from TitledBorder color " + titledBorderColor.toString()); } // title color is explicitly specified Color color = Color.green; titledBorder.setTitleColor(color); if (!color.equals(titledBorder.getTitleColor())) { throw new RuntimeException("TitledBorder color should be " + color.toString()); } // title color is unspecified titledBorder.setTitleColor(null); if (!defaultColor.equals(titledBorder.getTitleColor())) { throw new RuntimeException("L&F default color " + defaultColor.toString() + " differs from TitledBorder color " + titledBorderColor.toString()); } }
Example 3
Source Project: jdk8u60 File: Test7022041.java License: GNU General Public License v2.0 | 5 votes |
/** * Check behaviour of method TitledBorder.getTitleColor() */ private static void checkTitleColor() { TitledBorder titledBorder = new TitledBorder(new EmptyBorder(1, 1, 1, 1)); Color defaultColor = UIManager.getLookAndFeelDefaults().getColor("TitledBorder.titleColor"); Color titledBorderColor = titledBorder.getTitleColor(); // check default configuration if (defaultColor == null) { if (titledBorderColor == null) { return; } else { throw new RuntimeException("TitledBorder default color should be null"); } } if (!defaultColor.equals(titledBorderColor)) { throw new RuntimeException("L&F default color " + defaultColor.toString() + " differs from TitledBorder color " + titledBorderColor.toString()); } // title color is explicitly specified Color color = Color.green; titledBorder.setTitleColor(color); if (!color.equals(titledBorder.getTitleColor())) { throw new RuntimeException("TitledBorder color should be " + color.toString()); } // title color is unspecified titledBorder.setTitleColor(null); if (!defaultColor.equals(titledBorder.getTitleColor())) { throw new RuntimeException("L&F default color " + defaultColor.toString() + " differs from TitledBorder color " + titledBorderColor.toString()); } }
Example 4
Source Project: openjdk-jdk8u File: Test7022041.java License: GNU General Public License v2.0 | 5 votes |
/** * Check behaviour of method TitledBorder.getTitleColor() */ private static void checkTitleColor() { TitledBorder titledBorder = new TitledBorder(new EmptyBorder(1, 1, 1, 1)); Color defaultColor = UIManager.getLookAndFeelDefaults().getColor("TitledBorder.titleColor"); Color titledBorderColor = titledBorder.getTitleColor(); // check default configuration if (defaultColor == null) { if (titledBorderColor == null) { return; } else { throw new RuntimeException("TitledBorder default color should be null"); } } if (!defaultColor.equals(titledBorderColor)) { throw new RuntimeException("L&F default color " + defaultColor.toString() + " differs from TitledBorder color " + titledBorderColor.toString()); } // title color is explicitly specified Color color = Color.green; titledBorder.setTitleColor(color); if (!color.equals(titledBorder.getTitleColor())) { throw new RuntimeException("TitledBorder color should be " + color.toString()); } // title color is unspecified titledBorder.setTitleColor(null); if (!defaultColor.equals(titledBorder.getTitleColor())) { throw new RuntimeException("L&F default color " + defaultColor.toString() + " differs from TitledBorder color " + titledBorderColor.toString()); } }
Example 5
Source Project: openjdk-jdk8u-backup File: Test7022041.java License: GNU General Public License v2.0 | 5 votes |
/** * Check behaviour of method TitledBorder.getTitleColor() */ private static void checkTitleColor() { TitledBorder titledBorder = new TitledBorder(new EmptyBorder(1, 1, 1, 1)); Color defaultColor = UIManager.getLookAndFeelDefaults().getColor("TitledBorder.titleColor"); Color titledBorderColor = titledBorder.getTitleColor(); // check default configuration if (defaultColor == null) { if (titledBorderColor == null) { return; } else { throw new RuntimeException("TitledBorder default color should be null"); } } if (!defaultColor.equals(titledBorderColor)) { throw new RuntimeException("L&F default color " + defaultColor.toString() + " differs from TitledBorder color " + titledBorderColor.toString()); } // title color is explicitly specified Color color = Color.green; titledBorder.setTitleColor(color); if (!color.equals(titledBorder.getTitleColor())) { throw new RuntimeException("TitledBorder color should be " + color.toString()); } // title color is unspecified titledBorder.setTitleColor(null); if (!defaultColor.equals(titledBorder.getTitleColor())) { throw new RuntimeException("L&F default color " + defaultColor.toString() + " differs from TitledBorder color " + titledBorderColor.toString()); } }
Example 6
Source Project: openjdk-jdk9 File: Test7022041.java License: GNU General Public License v2.0 | 5 votes |
/** * Check behaviour of method TitledBorder.getTitleColor() */ private static void checkTitleColor() { TitledBorder titledBorder = new TitledBorder(new EmptyBorder(1, 1, 1, 1)); Color defaultColor = UIManager.getLookAndFeelDefaults().getColor("TitledBorder.titleColor"); Color titledBorderColor = titledBorder.getTitleColor(); // check default configuration if (defaultColor == null) { if (titledBorderColor == null) { return; } else { throw new RuntimeException("TitledBorder default color should be null"); } } if (!defaultColor.equals(titledBorderColor)) { throw new RuntimeException("L&F default color " + defaultColor.toString() + " differs from TitledBorder color " + titledBorderColor.toString()); } // title color is explicitly specified Color color = Color.green; titledBorder.setTitleColor(color); if (!color.equals(titledBorder.getTitleColor())) { throw new RuntimeException("TitledBorder color should be " + color.toString()); } // title color is unspecified titledBorder.setTitleColor(null); if (!defaultColor.equals(titledBorder.getTitleColor())) { throw new RuntimeException("L&F default color " + defaultColor.toString() + " differs from TitledBorder color " + titledBorderColor.toString()); } }
Example 7
Source Project: openjdk-jdk9 File: bug8057791.java License: GNU General Public License v2.0 | 5 votes |
private static void checkColor(Color colorCheck, Rectangle bounds) { if (!findColor(colorCheck, bounds)) { String error = "[ERROR][" + colorCheck.toString() + "] Not found in selected cell"; errorString += error; } }
Example 8
Source Project: openjdk-jdk9 File: bug8057791.java License: GNU General Public License v2.0 | 5 votes |
private static void checkNotColor(Color colorCheck, Rectangle bounds) { if (findColor(colorCheck, bounds)) { String error = "[ERROR][" + colorCheck.toString() + "] is found in selected cell. " + "Not supposed to be found in negative test case"; errorString += error; } }
Example 9
Source Project: jdk8u-jdk File: Test7022041.java License: GNU General Public License v2.0 | 5 votes |
/** * Check behaviour of method TitledBorder.getTitleColor() */ private static void checkTitleColor() { TitledBorder titledBorder = new TitledBorder(new EmptyBorder(1, 1, 1, 1)); Color defaultColor = UIManager.getLookAndFeelDefaults().getColor("TitledBorder.titleColor"); Color titledBorderColor = titledBorder.getTitleColor(); // check default configuration if (defaultColor == null) { if (titledBorderColor == null) { return; } else { throw new RuntimeException("TitledBorder default color should be null"); } } if (!defaultColor.equals(titledBorderColor)) { throw new RuntimeException("L&F default color " + defaultColor.toString() + " differs from TitledBorder color " + titledBorderColor.toString()); } // title color is explicitly specified Color color = Color.green; titledBorder.setTitleColor(color); if (!color.equals(titledBorder.getTitleColor())) { throw new RuntimeException("TitledBorder color should be " + color.toString()); } // title color is unspecified titledBorder.setTitleColor(null); if (!defaultColor.equals(titledBorder.getTitleColor())) { throw new RuntimeException("L&F default color " + defaultColor.toString() + " differs from TitledBorder color " + titledBorderColor.toString()); } }
Example 10
Source Project: hottub File: Test7022041.java License: GNU General Public License v2.0 | 5 votes |
/** * Check behaviour of method TitledBorder.getTitleColor() */ private static void checkTitleColor() { TitledBorder titledBorder = new TitledBorder(new EmptyBorder(1, 1, 1, 1)); Color defaultColor = UIManager.getLookAndFeelDefaults().getColor("TitledBorder.titleColor"); Color titledBorderColor = titledBorder.getTitleColor(); // check default configuration if (defaultColor == null) { if (titledBorderColor == null) { return; } else { throw new RuntimeException("TitledBorder default color should be null"); } } if (!defaultColor.equals(titledBorderColor)) { throw new RuntimeException("L&F default color " + defaultColor.toString() + " differs from TitledBorder color " + titledBorderColor.toString()); } // title color is explicitly specified Color color = Color.green; titledBorder.setTitleColor(color); if (!color.equals(titledBorder.getTitleColor())) { throw new RuntimeException("TitledBorder color should be " + color.toString()); } // title color is unspecified titledBorder.setTitleColor(null); if (!defaultColor.equals(titledBorder.getTitleColor())) { throw new RuntimeException("L&F default color " + defaultColor.toString() + " differs from TitledBorder color " + titledBorderColor.toString()); } }
Example 11
Source Project: openjdk-8-source File: Test7022041.java License: GNU General Public License v2.0 | 5 votes |
/** * Check behaviour of method TitledBorder.getTitleColor() */ private static void checkTitleColor() { TitledBorder titledBorder = new TitledBorder(new EmptyBorder(1, 1, 1, 1)); Color defaultColor = UIManager.getLookAndFeelDefaults().getColor("TitledBorder.titleColor"); Color titledBorderColor = titledBorder.getTitleColor(); // check default configuration if (defaultColor == null) { if (titledBorderColor == null) { return; } else { throw new RuntimeException("TitledBorder default color should be null"); } } if (!defaultColor.equals(titledBorderColor)) { throw new RuntimeException("L&F default color " + defaultColor.toString() + " differs from TitledBorder color " + titledBorderColor.toString()); } // title color is explicitly specified Color color = Color.green; titledBorder.setTitleColor(color); if (!color.equals(titledBorder.getTitleColor())) { throw new RuntimeException("TitledBorder color should be " + color.toString()); } // title color is unspecified titledBorder.setTitleColor(null); if (!defaultColor.equals(titledBorder.getTitleColor())) { throw new RuntimeException("L&F default color " + defaultColor.toString() + " differs from TitledBorder color " + titledBorderColor.toString()); } }
Example 12
Source Project: openjdk-8 File: Test7022041.java License: GNU General Public License v2.0 | 5 votes |
/** * Check behaviour of method TitledBorder.getTitleColor() */ private static void checkTitleColor() { TitledBorder titledBorder = new TitledBorder(new EmptyBorder(1, 1, 1, 1)); Color defaultColor = UIManager.getLookAndFeelDefaults().getColor("TitledBorder.titleColor"); Color titledBorderColor = titledBorder.getTitleColor(); // check default configuration if (defaultColor == null) { if (titledBorderColor == null) { return; } else { throw new RuntimeException("TitledBorder default color should be null"); } } if (!defaultColor.equals(titledBorderColor)) { throw new RuntimeException("L&F default color " + defaultColor.toString() + " differs from TitledBorder color " + titledBorderColor.toString()); } // title color is explicitly specified Color color = Color.green; titledBorder.setTitleColor(color); if (!color.equals(titledBorder.getTitleColor())) { throw new RuntimeException("TitledBorder color should be " + color.toString()); } // title color is unspecified titledBorder.setTitleColor(null); if (!defaultColor.equals(titledBorder.getTitleColor())) { throw new RuntimeException("L&F default color " + defaultColor.toString() + " differs from TitledBorder color " + titledBorderColor.toString()); } }
Example 13
Source Project: jdk8u_jdk File: Test7022041.java License: GNU General Public License v2.0 | 5 votes |
/** * Check behaviour of method TitledBorder.getTitleColor() */ private static void checkTitleColor() { TitledBorder titledBorder = new TitledBorder(new EmptyBorder(1, 1, 1, 1)); Color defaultColor = UIManager.getLookAndFeelDefaults().getColor("TitledBorder.titleColor"); Color titledBorderColor = titledBorder.getTitleColor(); // check default configuration if (defaultColor == null) { if (titledBorderColor == null) { return; } else { throw new RuntimeException("TitledBorder default color should be null"); } } if (!defaultColor.equals(titledBorderColor)) { throw new RuntimeException("L&F default color " + defaultColor.toString() + " differs from TitledBorder color " + titledBorderColor.toString()); } // title color is explicitly specified Color color = Color.green; titledBorder.setTitleColor(color); if (!color.equals(titledBorder.getTitleColor())) { throw new RuntimeException("TitledBorder color should be " + color.toString()); } // title color is unspecified titledBorder.setTitleColor(null); if (!defaultColor.equals(titledBorder.getTitleColor())) { throw new RuntimeException("L&F default color " + defaultColor.toString() + " differs from TitledBorder color " + titledBorderColor.toString()); } }
Example 14
Source Project: mars-sim File: LabelMapLayer.java License: GNU General Public License v3.0 | 5 votes |
/** * Gets an image of the label from cache or creates one if it doesn't exist. * @param label the label string. * @param font the font to use. * @param fontRenderContext the font render context to use. * @param labelColor the color of the label. * @param labelOutlineColor the color of the outline of the label. * @return buffered image of label. */ private BufferedImage getLabelImage( String label, Font font, FontRenderContext fontRenderContext, Color labelColor, Color labelOutlineColor ) { BufferedImage labelImage = null; String labelId = label + font.toString() + labelColor.toString() + labelOutlineColor.toString(); if (labelImageCache.containsKey(labelId)) { labelImage = labelImageCache.get(labelId); } else { labelImage = createLabelImage(label, font, fontRenderContext, labelColor, labelOutlineColor); labelImageCache.put(labelId, labelImage); } return labelImage; }
Example 15
Source Project: jdk8u-jdk File: Test7022041.java License: GNU General Public License v2.0 | 5 votes |
/** * Check behaviour of method TitledBorder.getTitleColor() */ private static void checkTitleColor() { TitledBorder titledBorder = new TitledBorder(new EmptyBorder(1, 1, 1, 1)); Color defaultColor = UIManager.getLookAndFeelDefaults().getColor("TitledBorder.titleColor"); Color titledBorderColor = titledBorder.getTitleColor(); // check default configuration if (defaultColor == null) { if (titledBorderColor == null) { return; } else { throw new RuntimeException("TitledBorder default color should be null"); } } if (!defaultColor.equals(titledBorderColor)) { throw new RuntimeException("L&F default color " + defaultColor.toString() + " differs from TitledBorder color " + titledBorderColor.toString()); } // title color is explicitly specified Color color = Color.green; titledBorder.setTitleColor(color); if (!color.equals(titledBorder.getTitleColor())) { throw new RuntimeException("TitledBorder color should be " + color.toString()); } // title color is unspecified titledBorder.setTitleColor(null); if (!defaultColor.equals(titledBorder.getTitleColor())) { throw new RuntimeException("L&F default color " + defaultColor.toString() + " differs from TitledBorder color " + titledBorderColor.toString()); } }
Example 16
Source Project: jdk8u-dev-jdk File: Test7022041.java License: GNU General Public License v2.0 | 5 votes |
/** * Check behaviour of method TitledBorder.getTitleColor() */ private static void checkTitleColor() { TitledBorder titledBorder = new TitledBorder(new EmptyBorder(1, 1, 1, 1)); Color defaultColor = UIManager.getLookAndFeelDefaults().getColor("TitledBorder.titleColor"); Color titledBorderColor = titledBorder.getTitleColor(); // check default configuration if (defaultColor == null) { if (titledBorderColor == null) { return; } else { throw new RuntimeException("TitledBorder default color should be null"); } } if (!defaultColor.equals(titledBorderColor)) { throw new RuntimeException("L&F default color " + defaultColor.toString() + " differs from TitledBorder color " + titledBorderColor.toString()); } // title color is explicitly specified Color color = Color.green; titledBorder.setTitleColor(color); if (!color.equals(titledBorder.getTitleColor())) { throw new RuntimeException("TitledBorder color should be " + color.toString()); } // title color is unspecified titledBorder.setTitleColor(null); if (!defaultColor.equals(titledBorder.getTitleColor())) { throw new RuntimeException("L&F default color " + defaultColor.toString() + " differs from TitledBorder color " + titledBorderColor.toString()); } }
Example 17
Source Project: MyBox File: ImageScope.java License: Apache License 2.0 | 4 votes |
public String getScopeColorText() { String s = ""; String colorString = ""; if (colors.isEmpty()) { colorString += message("None") + " "; } else { for (Color c : colors) { colorString += c.toString() + " "; } } switch (colorScopeType) { case AllColor: s += " " + message("AllColors"); break; case Color: case Red: case Green: case Blue: s += " " + message("SelectedColors") + ":" + colorString; s += message("ColorDistance") + ":" + colorDistance; if (colorExcluded) { s += " " + message("Excluded"); } break; case Brightness: case Saturation: s += " " + message("SelectedColors") + ":" + colorString; s += message("ColorDistance") + ":" + (int) (hsbDistance * 100); if (colorExcluded) { s += " " + message("Excluded"); } break; case Hue: s += " " + message("SelectedColors") + ":" + colorString; s += message("HueDistance") + ":" + (int) (hsbDistance * 360); if (colorExcluded) { s += " " + message("Excluded"); } break; default: break; } return s; }
Example 18
Source Project: netbeans File: BrowserDisplayer.java License: Apache License 2.0 | 4 votes |
/** * Returns the text Color of the activator text */ public String getTextColor() { Color color = getForeground(); return color.toString(); }