<?xml version="1.0"?>
<feed xmlns="http://www.w3.org/2005/Atom" xml:lang="ru">
		<id>http://jexp.ru/index.php?action=history&amp;feed=atom&amp;title=Java%2FSwing_Components%2FColor_Chooser</id>
		<title>Java/Swing Components/Color Chooser - История изменений</title>
		<link rel="self" type="application/atom+xml" href="http://jexp.ru/index.php?action=history&amp;feed=atom&amp;title=Java%2FSwing_Components%2FColor_Chooser"/>
		<link rel="alternate" type="text/html" href="http://jexp.ru/index.php?title=Java/Swing_Components/Color_Chooser&amp;action=history"/>
		<updated>2026-04-18T14:14:50Z</updated>
		<subtitle>История изменений этой страницы в вики</subtitle>
		<generator>MediaWiki 1.30.0</generator>

	<entry>
		<id>http://jexp.ru/index.php?title=Java/Swing_Components/Color_Chooser&amp;diff=8217&amp;oldid=prev</id>
		<title>Admin: 1 версия</title>
		<link rel="alternate" type="text/html" href="http://jexp.ru/index.php?title=Java/Swing_Components/Color_Chooser&amp;diff=8217&amp;oldid=prev"/>
				<updated>2010-06-01T06:56:37Z</updated>
		
		<summary type="html">&lt;p&gt;1 версия&lt;/p&gt;
&lt;table class=&quot;diff diff-contentalign-left&quot; data-mw=&quot;interface&quot;&gt;
				&lt;tr style=&quot;vertical-align: top;&quot; lang=&quot;ru&quot;&gt;
				&lt;td colspan=&quot;1&quot; style=&quot;background-color: white; color:black; text-align: center;&quot;&gt;← Предыдущая&lt;/td&gt;
				&lt;td colspan=&quot;1&quot; style=&quot;background-color: white; color:black; text-align: center;&quot;&gt;Версия 06:56, 1 июня 2010&lt;/td&gt;
				&lt;/tr&gt;&lt;tr&gt;&lt;td colspan=&quot;2&quot; style=&quot;text-align: center;&quot; lang=&quot;ru&quot;&gt;&lt;div class=&quot;mw-diff-empty&quot;&gt;(нет различий)&lt;/div&gt;
&lt;/td&gt;&lt;/tr&gt;&lt;/table&gt;</summary>
		<author><name>Admin</name></author>	</entry>

	<entry>
		<id>http://jexp.ru/index.php?title=Java/Swing_Components/Color_Chooser&amp;diff=8216&amp;oldid=prev</id>
		<title> в 18:01, 31 мая 2010</title>
		<link rel="alternate" type="text/html" href="http://jexp.ru/index.php?title=Java/Swing_Components/Color_Chooser&amp;diff=8216&amp;oldid=prev"/>
				<updated>2010-05-31T18:01:46Z</updated>
		
		<summary type="html">&lt;p&gt;&lt;/p&gt;
&lt;p&gt;&lt;b&gt;Новая страница&lt;/b&gt;&lt;/p&gt;&lt;div&gt;== A panel from where you can choose a color based on it&amp;quot;s HTML name ==&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
   &lt;br /&gt;
  &amp;lt;!-- start source code --&amp;gt;&lt;br /&gt;
   &lt;br /&gt;
    &amp;lt;source lang=&amp;quot;java&amp;quot;&amp;gt;&lt;br /&gt;
   &lt;br /&gt;
//Revised from com.greef.ui;&lt;br /&gt;
import java.awt.BorderLayout;&lt;br /&gt;
import java.awt.Color;&lt;br /&gt;
import java.awt.event.ItemEvent;&lt;br /&gt;
import java.awt.event.ItemListener;&lt;br /&gt;
import java.lang.reflect.Field;&lt;br /&gt;
import java.util.Collection;&lt;br /&gt;
import java.util.HashMap;&lt;br /&gt;
import java.util.Map;&lt;br /&gt;
import javax.swing.Icon;&lt;br /&gt;
import javax.swing.JColorChooser;&lt;br /&gt;
import javax.swing.JComboBox;&lt;br /&gt;
import javax.swing.JLabel;&lt;br /&gt;
import javax.swing.UIManager;&lt;br /&gt;
import javax.swing.colorchooser.AbstractColorChooserPanel;&lt;br /&gt;
/**&lt;br /&gt;
 * This is a panel from where you can choose a color based on it&amp;quot;s HTML name.&lt;br /&gt;
 * This panel was designed to be integrated in JColorChooser component.&lt;br /&gt;
 * &amp;lt;blockquote&amp;gt;&amp;lt;code&amp;gt;&lt;br /&gt;
 * JColorChooser colorChooser = new JColorChooser();&lt;br /&gt;
 * colorChooser.addChooserPanel(new HTMLColorsChooserPanel());&lt;br /&gt;
 * &amp;lt;/code&amp;gt;&amp;lt;/blockquote&amp;gt;&lt;br /&gt;
 * @author Adrian Ber&lt;br /&gt;
 * @see HTMLColors&lt;br /&gt;
 */&lt;br /&gt;
public class HTMLColorsChooserPanel extends AbstractColorChooserPanel {&lt;br /&gt;
    /** The name of this color chooser panel; will appear as the tab name&lt;br /&gt;
     *  in the color chooser&lt;br /&gt;
     */&lt;br /&gt;
    private String displayName;&lt;br /&gt;
    /** The name displayed for a color without a HTML name */&lt;br /&gt;
    private String nonHTMLColorDisplayName;&lt;br /&gt;
    /** the color chooser in which is included this panel. */&lt;br /&gt;
    private JColorChooser parent = null;&lt;br /&gt;
    /** The combo box filled with the HTML color names */&lt;br /&gt;
    private JComboBox colorsComboBox = new JComboBox();&lt;br /&gt;
    /** The label in front of the HTML color combo box. */&lt;br /&gt;
    private JLabel colorLabel;&lt;br /&gt;
    public HTMLColorsChooserPanel() {&lt;br /&gt;
        this(&amp;quot;HTML Names&amp;quot;, &amp;quot;&amp;lt;Custom&amp;gt;&amp;quot;);&lt;br /&gt;
    }&lt;br /&gt;
    public HTMLColorsChooserPanel(String displayName) {&lt;br /&gt;
        this(displayName, &amp;quot;&amp;lt;Custom&amp;gt;&amp;quot;);&lt;br /&gt;
    }&lt;br /&gt;
    public HTMLColorsChooserPanel(String displayName, String nonHTMlColorDisplayName) {&lt;br /&gt;
        this.displayName = displayName;&lt;br /&gt;
        this.nonHTMLColorDisplayName = nonHTMlColorDisplayName;&lt;br /&gt;
        buildChooser();&lt;br /&gt;
    }&lt;br /&gt;
    public Icon getSmallDisplayIcon() {&lt;br /&gt;
        return null;&lt;br /&gt;
    }&lt;br /&gt;
    public void updateChooser() {&lt;br /&gt;
        if (parent != null) {&lt;br /&gt;
            String x = HTMLColors.getName(getColorFromModel());&lt;br /&gt;
            if (x == null) x = nonHTMLColorDisplayName;&lt;br /&gt;
            colorsComboBox.setSelectedItem(x);&lt;br /&gt;
        }&lt;br /&gt;
    }&lt;br /&gt;
    public String getDisplayName() {&lt;br /&gt;
        return displayName;&lt;br /&gt;
    }&lt;br /&gt;
    public Icon getLargeDisplayIcon() {&lt;br /&gt;
        return null;&lt;br /&gt;
    }&lt;br /&gt;
    /** Initializes this color chooser components. */&lt;br /&gt;
    protected void buildChooser() {&lt;br /&gt;
        setLayout(new BorderLayout());&lt;br /&gt;
        colorsComboBox.addItem(nonHTMLColorDisplayName);&lt;br /&gt;
        for (String color : HTMLColors.colors()) {&lt;br /&gt;
            colorsComboBox.addItem(color);&lt;br /&gt;
        }&lt;br /&gt;
        colorsComboBox.addItemListener(new ItemListener() {&lt;br /&gt;
            public void itemStateChanged(ItemEvent ev) {&lt;br /&gt;
                if (parent == null) return;&lt;br /&gt;
                Object name = colorsComboBox.getSelectedItem();&lt;br /&gt;
                if ((name != null) &amp;amp;&amp;amp; (!name.toString().equals(nonHTMLColorDisplayName))) {&lt;br /&gt;
                    parent.setColor(HTMLColors.getColor(name.toString()));&lt;br /&gt;
                }&lt;br /&gt;
            }&lt;br /&gt;
        });&lt;br /&gt;
        colorLabel = new JLabel(getColorLabelText());&lt;br /&gt;
        add(colorLabel, BorderLayout.WEST);&lt;br /&gt;
        add(colorsComboBox, BorderLayout.CENTER);&lt;br /&gt;
    }&lt;br /&gt;
    private String getColorLabelText() {&lt;br /&gt;
        String x = UIManager.getString(&amp;quot;HTMLColorsChooserPanel.colorLabel&amp;quot;);&lt;br /&gt;
        if (x == null) {&lt;br /&gt;
            x = &amp;quot;HTML Color:&amp;quot;;&lt;br /&gt;
        }&lt;br /&gt;
        return x;&lt;br /&gt;
    }&lt;br /&gt;
    public void installChooserPanel(JColorChooser enclosingChooser) {&lt;br /&gt;
        parent = enclosingChooser;&lt;br /&gt;
        super.installChooserPanel(enclosingChooser);&lt;br /&gt;
    }&lt;br /&gt;
    public void updateUI() {&lt;br /&gt;
        super.updateUI();&lt;br /&gt;
        if (colorLabel != null)&lt;br /&gt;
            colorLabel.setText(getColorLabelText());&lt;br /&gt;
    }&lt;br /&gt;
}&lt;br /&gt;
class HTMLColors {&lt;br /&gt;
  /** Don&amp;quot;t instantiate this, use only the static methods */&lt;br /&gt;
  private HTMLColors() {&lt;br /&gt;
  }&lt;br /&gt;
  /** map between color names and colors;&lt;br /&gt;
   * tough there are fields for every color we use a map because is a faster&lt;br /&gt;
   * way to get the color&lt;br /&gt;
   */&lt;br /&gt;
  private static Map&amp;lt;String, Color&amp;gt; name2color = new HashMap&amp;lt;String, Color&amp;gt;();&lt;br /&gt;
  /** map between colors and color names;&lt;br /&gt;
   * tough there are fields for every color we use a map because is a faster&lt;br /&gt;
   * way to get the color&lt;br /&gt;
   */&lt;br /&gt;
  private static Map&amp;lt;Color, String&amp;gt; color2name = new HashMap&amp;lt;Color, String&amp;gt;();&lt;br /&gt;
  /** Initialiase colors map */&lt;br /&gt;
  private static void initColorsMap() {&lt;br /&gt;
      Field[] fields = HTMLColors.class.getFields();&lt;br /&gt;
      for (Field field : fields) {&lt;br /&gt;
          if (field.getType().isAssignableFrom(Color.class)) {&lt;br /&gt;
              addColor(field.getName());&lt;br /&gt;
          }&lt;br /&gt;
      }&lt;br /&gt;
  }&lt;br /&gt;
  /** Used to initialize the map */&lt;br /&gt;
  private static void addColor(String colorName, Color color) {&lt;br /&gt;
      name2color.put(colorName, color);&lt;br /&gt;
      color2name.put(color, colorName);&lt;br /&gt;
  }&lt;br /&gt;
  /** Used to initialize the map */&lt;br /&gt;
  private static void addColor(String colorName) {&lt;br /&gt;
      addColor(colorName, getColorFromField(colorName));&lt;br /&gt;
  }&lt;br /&gt;
  /** Used to initialize the map */&lt;br /&gt;
  private static void addColor(String colorName, int colorRGB) {&lt;br /&gt;
      addColor(colorName, new Color(colorRGB));&lt;br /&gt;
  }&lt;br /&gt;
  /** Returns a color with the specified case-insensitive name. */&lt;br /&gt;
  private static Color getColorFromField(String name) {&lt;br /&gt;
      try {&lt;br /&gt;
          Field colorField = HTMLColors.class.getField(name.toLowerCase());&lt;br /&gt;
          return (Color) colorField.get(HTMLColors.class);&lt;br /&gt;
      }&lt;br /&gt;
      catch (NoSuchFieldException exc) {&lt;br /&gt;
      }&lt;br /&gt;
      catch (SecurityException exc) {&lt;br /&gt;
      }&lt;br /&gt;
      catch (IllegalAccessException exc) {&lt;br /&gt;
      }&lt;br /&gt;
      catch (IllegalArgumentException exc) {&lt;br /&gt;
      }&lt;br /&gt;
      return null;&lt;br /&gt;
  }&lt;br /&gt;
  /** Returns a color with the specified case-insensitive name.*/&lt;br /&gt;
  public static String getName(Color color) {&lt;br /&gt;
      return color2name.get(color);&lt;br /&gt;
  }&lt;br /&gt;
  /** Returns a color with the specified case-insensitive name.*/&lt;br /&gt;
  public static Color getColor(String name) {&lt;br /&gt;
      return name2color.get(name.toLowerCase());&lt;br /&gt;
  }&lt;br /&gt;
  /** Returns a collection of all color names */&lt;br /&gt;
  public static Collection&amp;lt;String&amp;gt; colors() {&lt;br /&gt;
      return name2color.keySet();&lt;br /&gt;
  }&lt;br /&gt;
  /** Transform a color string into a color object.&lt;br /&gt;
   *  @param s the color string&lt;br /&gt;
   *  @return the color object&lt;br /&gt;
   */&lt;br /&gt;
  public static Color decodeColor(String s) {&lt;br /&gt;
      if (s == null)&lt;br /&gt;
          return null;&lt;br /&gt;
      Color c;&lt;br /&gt;
      try {&lt;br /&gt;
          c = Color.decode(s);&lt;br /&gt;
      }&lt;br /&gt;
      catch (NumberFormatException exc) {&lt;br /&gt;
          c = HTMLColors.getColor(s);&lt;br /&gt;
      }&lt;br /&gt;
      return c;&lt;br /&gt;
  }&lt;br /&gt;
  public static final Color aliceblue = new Color(0xf0f8ff);&lt;br /&gt;
  public static final Color antiquewhite = new Color(0xfaebd7);&lt;br /&gt;
  public static final Color aqua = new Color(0x00ffff);&lt;br /&gt;
  public static final Color aquamarine = new Color(0x7fffd4);&lt;br /&gt;
  public static final Color azure = new Color(0xf0ffff);&lt;br /&gt;
  public static final Color beige = new Color(0xf5f5dc);&lt;br /&gt;
  public static final Color bisque = new Color(0xffe4c4);&lt;br /&gt;
  public static final Color black = new Color(0x000000);&lt;br /&gt;
  public static final Color blanchedalmond = new Color(0xffebcd);&lt;br /&gt;
  public static final Color blue = new Color(0x0000ff);&lt;br /&gt;
  public static final Color blueviolet = new Color(0x8a2be2);&lt;br /&gt;
  public static final Color brown = new Color(0xa52a2a);&lt;br /&gt;
  public static final Color burlywood = new Color(0xdeb887);&lt;br /&gt;
  public static final Color cadetblue = new Color(0x5f9ea0);&lt;br /&gt;
  public static final Color chartreuse = new Color(0x7fff00);&lt;br /&gt;
  public static final Color chocolate = new Color(0xd2691e);&lt;br /&gt;
  public static final Color coral = new Color(0xff7f50);&lt;br /&gt;
  public static final Color cornflowerblue = new Color(0x6495ed);&lt;br /&gt;
  public static final Color cornsilk = new Color(0xfff8dc);&lt;br /&gt;
  public static final Color crimson = new Color(0xdc143c);&lt;br /&gt;
  public static final Color cyan = new Color(0x00ffff);&lt;br /&gt;
  public static final Color darkblue = new Color(0x00008b);&lt;br /&gt;
  public static final Color darkcyan = new Color(0x008b8b);&lt;br /&gt;
  public static final Color darkgoldenrod = new Color(0xb8860b);&lt;br /&gt;
  public static final Color darkgray = new Color(0xa9a9a9);&lt;br /&gt;
  public static final Color darkgreen = new Color(0x006400);&lt;br /&gt;
  public static final Color darkkhaki = new Color(0xbdb76b);&lt;br /&gt;
  public static final Color darkmagenta = new Color(0x8b008b);&lt;br /&gt;
  public static final Color darkolivegreen = new Color(0x556b2f);&lt;br /&gt;
  public static final Color darkorange = new Color(0xff8c00);&lt;br /&gt;
  public static final Color darkorchid = new Color(0x9932cc);&lt;br /&gt;
  public static final Color darkred = new Color(0x8b0000);&lt;br /&gt;
  public static final Color darksalmon = new Color(0xe9967a);&lt;br /&gt;
  public static final Color darkseagreen = new Color(0x8fbc8f);&lt;br /&gt;
  public static final Color darkslateblue = new Color(0x483d8b);&lt;br /&gt;
  public static final Color darkslategray = new Color(0x2f4f4f);&lt;br /&gt;
  public static final Color darkturquoise = new Color(0x00ced1);&lt;br /&gt;
  public static final Color darkviolet = new Color(0x9400d3);&lt;br /&gt;
  public static final Color deeppink = new Color(0xff1493);&lt;br /&gt;
  public static final Color deepskyblue = new Color(0x00bfff);&lt;br /&gt;
  public static final Color dimgray = new Color(0x696969);&lt;br /&gt;
  public static final Color dodgerblue = new Color(0x1e90ff);&lt;br /&gt;
  public static final Color firebrick = new Color(0xb22222);&lt;br /&gt;
  public static final Color floralwhite = new Color(0xfffaf0);&lt;br /&gt;
  public static final Color forestgreen = new Color(0x228b22);&lt;br /&gt;
  public static final Color fuchsia = new Color(0xff00ff);&lt;br /&gt;
  public static final Color gainsboro = new Color(0xdcdcdc);&lt;br /&gt;
  public static final Color ghostwhite = new Color(0xf8f8ff);&lt;br /&gt;
  public static final Color gold = new Color(0xffd700);&lt;br /&gt;
  public static final Color goldenrod = new Color(0xdaa520);&lt;br /&gt;
  public static final Color gray = new Color(0x808080);&lt;br /&gt;
  public static final Color green = new Color(0x008000);&lt;br /&gt;
  public static final Color greenyellow = new Color(0xadff2f);&lt;br /&gt;
  public static final Color honeydew = new Color(0xf0fff0);&lt;br /&gt;
  public static final Color hotpink = new Color(0xff69b4);&lt;br /&gt;
  public static final Color indianred = new Color(0xcd5c5c);&lt;br /&gt;
  public static final Color indigo = new Color(0x4b0082);&lt;br /&gt;
  public static final Color ivory = new Color(0xfffff0);&lt;br /&gt;
  public static final Color khaki = new Color(0xf0e68c);&lt;br /&gt;
  public static final Color lavender = new Color(0xe6e6fa);&lt;br /&gt;
  public static final Color lavenderblush = new Color(0xfff0f5);&lt;br /&gt;
  public static final Color lawngreen = new Color(0x7cfc00);&lt;br /&gt;
  public static final Color lemonchiffon = new Color(0xfffacd);&lt;br /&gt;
  public static final Color lightblue = new Color(0xadd8e6);&lt;br /&gt;
  public static final Color lightcoral = new Color(0xf08080);&lt;br /&gt;
  public static final Color lightcyan = new Color(0xe0ffff);&lt;br /&gt;
  public static final Color lightgoldenrodyellow = new Color(0xfafad2);&lt;br /&gt;
  public static final Color lightgreen = new Color(0x90ee90);&lt;br /&gt;
  public static final Color lightgrey = new Color(0xd3d3d3);&lt;br /&gt;
  public static final Color lightpink = new Color(0xffb6c1);&lt;br /&gt;
  public static final Color lightsalmon = new Color(0xffa07a);&lt;br /&gt;
  public static final Color lightseagreen = new Color(0x20b2aa);&lt;br /&gt;
  public static final Color lightskyblue = new Color(0x87cefa);&lt;br /&gt;
  public static final Color lightslategray = new Color(0x778899);&lt;br /&gt;
  public static final Color lightsteelblue = new Color(0xb0c4de);&lt;br /&gt;
  public static final Color lightyellow = new Color(0xffffe0);&lt;br /&gt;
  public static final Color lime = new Color(0x00ff00);&lt;br /&gt;
  public static final Color limegreen = new Color(0x32cd32);&lt;br /&gt;
  public static final Color linen = new Color(0xfaf0e6);&lt;br /&gt;
  public static final Color magenta = new Color(0xff00ff);&lt;br /&gt;
  public static final Color maroon = new Color(0x800000);&lt;br /&gt;
  public static final Color mediumaquamarine = new Color(0x66cdaa);&lt;br /&gt;
  public static final Color mediumblue = new Color(0x0000cd);&lt;br /&gt;
  public static final Color mediumorchid = new Color(0xba55d3);&lt;br /&gt;
  public static final Color mediumpurple = new Color(0x9370db);&lt;br /&gt;
  public static final Color mediumseagreen = new Color(0x3cb371);&lt;br /&gt;
  public static final Color mediumslateblue = new Color(0x7b68ee);&lt;br /&gt;
  public static final Color mediumspringgreen = new Color(0x00fa9a);&lt;br /&gt;
  public static final Color mediumturquoise = new Color(0x48d1cc);&lt;br /&gt;
  public static final Color mediumvioletred = new Color(0xc71585);&lt;br /&gt;
  public static final Color midnightblue = new Color(0x191970);&lt;br /&gt;
  public static final Color mintcream = new Color(0xf5fffa);&lt;br /&gt;
  public static final Color mistyrose = new Color(0xffe4e1);&lt;br /&gt;
  public static final Color moccasin = new Color(0xffe4b5);&lt;br /&gt;
  public static final Color navajowhite = new Color(0xffdead);&lt;br /&gt;
  public static final Color navy = new Color(0x000080);&lt;br /&gt;
  public static final Color oldlace = new Color(0xfdf5e6);&lt;br /&gt;
  public static final Color olive = new Color(0x808000);&lt;br /&gt;
  public static final Color olivedrab = new Color(0x6b8e23);&lt;br /&gt;
  public static final Color orange = new Color(0xffa500);&lt;br /&gt;
  public static final Color orangered = new Color(0xff4500);&lt;br /&gt;
  public static final Color orchid = new Color(0xda70d6);&lt;br /&gt;
  public static final Color palegoldenrod = new Color(0xeee8aa);&lt;br /&gt;
  public static final Color palegreen = new Color(0x98fb98);&lt;br /&gt;
  public static final Color paleturquoise = new Color(0xafeeee);&lt;br /&gt;
  public static final Color palevioletred = new Color(0xdb7093);&lt;br /&gt;
  public static final Color papayawhip = new Color(0xffefd5);&lt;br /&gt;
  public static final Color peachpuff = new Color(0xffdab9);&lt;br /&gt;
  public static final Color peru = new Color(0xcd853f);&lt;br /&gt;
  public static final Color pink = new Color(0xffc0cb);&lt;br /&gt;
  public static final Color plum = new Color(0xdda0dd);&lt;br /&gt;
  public static final Color powderblue = new Color(0xb0e0e6);&lt;br /&gt;
  public static final Color purple = new Color(0x800080);&lt;br /&gt;
  public static final Color red = new Color(0xff0000);&lt;br /&gt;
  public static final Color rosybrown = new Color(0xbc8f8f);&lt;br /&gt;
  public static final Color royalblue = new Color(0x4169e1);&lt;br /&gt;
  public static final Color saddlebrown = new Color(0x8b4513);&lt;br /&gt;
  public static final Color salmon = new Color(0xfa8072);&lt;br /&gt;
  public static final Color sandybrown = new Color(0xf4a460);&lt;br /&gt;
  public static final Color seagreen = new Color(0x2e8b57);&lt;br /&gt;
  public static final Color seashell = new Color(0xfff5ee);&lt;br /&gt;
  public static final Color sienna = new Color(0xa0522d);&lt;br /&gt;
  public static final Color silver = new Color(0xc0c0c0);&lt;br /&gt;
  public static final Color skyblue = new Color(0x87ceeb);&lt;br /&gt;
  public static final Color slateblue = new Color(0x6a5acd);&lt;br /&gt;
  public static final Color slategray = new Color(0x708090);&lt;br /&gt;
  public static final Color snow = new Color(0xfffafa);&lt;br /&gt;
  public static final Color springgreen = new Color(0x00ff7f);&lt;br /&gt;
  public static final Color steelblue = new Color(0x4682b4);&lt;br /&gt;
  public static final Color tan = new Color(0xd2b48c);&lt;br /&gt;
  public static final Color teal = new Color(0x008080);&lt;br /&gt;
  public static final Color thistle = new Color(0xd8bfd8);&lt;br /&gt;
  public static final Color tomato = new Color(0xff6347);&lt;br /&gt;
  public static final Color turquoise = new Color(0x40e0d0);&lt;br /&gt;
  public static final Color violet = new Color(0xee82ee);&lt;br /&gt;
  public static final Color wheat = new Color(0xf5deb3);&lt;br /&gt;
  public static final Color white = new Color(0xffffff);&lt;br /&gt;
  public static final Color whitesmoke = new Color(0xf5f5f5);&lt;br /&gt;
  public static final Color yellow = new Color(0xffff00);&lt;br /&gt;
  public static final Color yellowgreen = new Color(0x9acd32);&lt;br /&gt;
  static {&lt;br /&gt;
      initColorsMap();&lt;br /&gt;
  }&lt;br /&gt;
}&lt;br /&gt;
   &lt;br /&gt;
    &lt;br /&gt;
    &lt;br /&gt;
  &amp;lt;/source&amp;gt;&lt;br /&gt;
    &lt;br /&gt;
   &lt;br /&gt;
  &amp;lt;!-- end source code --&amp;gt;&lt;/div&gt;</summary>
			</entry>

	</feed>