|
36 | 36 | */
|
37 | 37 | public class UISupport {
|
38 | 38 |
|
39 |
| - /** Returns default background of tables & textcomponents */ |
| 39 | + /** Returns default background of tables & textcomponents */ |
40 | 40 | public static Color getDefaultBackground() {
|
41 | 41 | return UIUtils.getProfilerResultsBackground();
|
42 | 42 | }
|
43 | 43 |
|
44 |
| - /** Determines if current L&F is AquaLookAndFeel */ |
| 44 | + /** Determines if current L&F is AquaLookAndFeel */ |
45 | 45 | public static boolean isAquaLookAndFeel() {
|
46 | 46 | return UIUtils.isAquaLookAndFeel();
|
47 | 47 | }
|
48 | 48 |
|
49 |
| - /** Determines if current L&F is GTKLookAndFeel */ |
| 49 | + /** Determines if current L&F is GTKLookAndFeel */ |
50 | 50 | public static boolean isGTKLookAndFeel() {
|
51 | 51 | return UIUtils.isGTKLookAndFeel();
|
52 | 52 | }
|
53 | 53 |
|
54 |
| - /** Determines if current L&F is Nimbus */ |
| 54 | + /** Determines if current L&F is Nimbus */ |
55 | 55 | public static boolean isNimbusLookAndFeel() {
|
56 | 56 | return UIUtils.isNimbusLookAndFeel();
|
57 | 57 | }
|
58 | 58 |
|
59 |
| - /** Determines if current L&F is GTK using Nimbus theme */ |
| 59 | + /** Determines if current L&F is GTK using Nimbus theme */ |
60 | 60 | public static boolean isNimbusGTKTheme() {
|
61 | 61 | return UIUtils.isNimbusGTKTheme();
|
62 | 62 | }
|
63 | 63 |
|
64 |
| - /** Determines if current L&F is Nimbus or GTK with Nimbus theme*/ |
| 64 | + /** Determines if current L&F is Nimbus or GTK with Nimbus theme*/ |
65 | 65 | public static boolean isNimbus() {
|
66 | 66 | return UIUtils.isNimbus();
|
67 | 67 | }
|
68 | 68 |
|
69 |
| - /** Determines if current L&F is MetalLookAndFeel */ |
| 69 | + /** Determines if current L&F is MetalLookAndFeel */ |
70 | 70 | public static boolean isMetalLookAndFeel() {
|
71 | 71 | return UIUtils.isMetalLookAndFeel();
|
72 | 72 | }
|
73 | 73 |
|
74 |
| - /** Determines if current L&F is Windows Classic LookAndFeel */ |
| 74 | + /** Determines if current L&F is Windows Classic LookAndFeel */ |
75 | 75 | public static boolean isWindowsClassicLookAndFeel() {
|
76 | 76 | return UIUtils.isWindowsClassicLookAndFeel();
|
77 | 77 | }
|
78 | 78 |
|
79 |
| - /** Determines if current L&F is WindowsLookAndFeel */ |
| 79 | + /** Determines if current L&F is WindowsLookAndFeel */ |
80 | 80 | public static boolean isWindowsLookAndFeel() {
|
81 | 81 | return UIUtils.isWindowsLookAndFeel();
|
82 | 82 | }
|
83 | 83 |
|
84 |
| - /** Determines if current L&F is Windows XP LookAndFeel */ |
| 84 | + /** Determines if current L&F is Windows XP LookAndFeel */ |
85 | 85 | public static boolean isWindowsXPLookAndFeel() {
|
86 | 86 | return UIUtils.isWindowsXPLookAndFeel();
|
87 | 87 | }
|
|
0 commit comments