src/share/classes/com/sun/java/swing/plaf/gtk/XColors.java

Print this page

        

*** 1,7 **** /* ! * Copyright (c) 2002, Oracle and/or its affiliates. All rights reserved. * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. * * This code is free software; you can redistribute it and/or modify it * under the terms of the GNU General Public License version 2 only, as * published by the Free Software Foundation. Oracle designates this --- 1,7 ---- /* ! * Copyright (c) 2002, 2014, Oracle and/or its affiliates. All rights reserved. * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. * * This code is free software; you can redistribute it and/or modify it * under the terms of the GNU General Public License version 2 only, as * published by the Free Software Foundation. Oracle designates this
*** 32,42 **** /** * @author Shannon Hickey */ class XColors { ! private static class XColor implements Comparable { String name; int red; int green; int blue; --- 32,42 ---- /** * @author Shannon Hickey */ class XColors { ! private static class XColor implements Comparable<XColor> { String name; int red; int green; int blue;
*** 50,63 **** Color toColor() { return new ColorUIResource(red, green, blue); } ! public int compareTo(Object o) { ! XColor other = (XColor)o; ! ! return name.compareTo(other.name); } } private static XColor key = new XColor("", -1, -1, -1); --- 50,61 ---- Color toColor() { return new ColorUIResource(red, green, blue); } ! public int compareTo(XColor o) { ! return name.compareTo(o.name); } } private static XColor key = new XColor("", -1, -1, -1);