/*
* DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
*
* under the terms of the GNU General Public License version 2 only, as
* published by the Free Software Foundation. Oracle designates this
* particular file as subject to the "Classpath" exception as provided
* by Oracle in the LICENSE file that accompanied this code.
*
* This code is distributed in the hope that it will be useful, but WITHOUT
* ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
* FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License
* version 2 for more details (a copy is included in the LICENSE file that
* accompanied this code).
*
* You should have received a copy of the GNU General Public License version
* 2 along with this work; if not, write to the Free Software Foundation,
* Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
*
* Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
* or visit www.oracle.com if you need additional information or have any
* questions.
*/
import javax.accessibility.*;
/**
* Miscellaneous utility methods for JConsole
*/
public class Utilities {
"com.sun.java.swing.plaf.windows.WindowsLookAndFeel";
}
if (comp instanceof JTabbedPane) {
} else if (child instanceof JComponent) {
}
}
}
child instanceof JSplitPane ||
child instanceof JScrollPane ||
}
t.setCellRenderer(cr);
}
}
}
/**
* A slightly modified border for JScrollPane to be used with a JTable inside
* a JTabbedPane. It has only top part and the rest is clipped to make the
* overall border less thick.
* The top border helps differentiating the containing table from its container.
*/
return new TableScrollPane(comp);
}
@SuppressWarnings("serial")
super(comp);
}
super.paintBorder(g);
}
}
}
}
}
}
/**
* Modifies color c1 to ensure it has acceptable contrast
* relative to color c2.
*
* http://www.w3.org/TR/AERT#color-contrast
* http://www.cs.rit.edu/~ncs/color/t_convert.html#RGB%20to%20YIQ%20&%20YIQ%20to%20RGB
*/
if (y2 < 128.0) {
} else {
}
}
return c1;
}
// Convert RGB -> YIQ and return the Y value
}
// Convert YIQ -> RGB
// Keep values in legal range. This may reduce the
// achieved contrast somewhat.
return new Color(r, g, b);
}
}