Skip to content

Commit 6cab986

Browse files
committed
javadoc fixed
1 parent 5ba444e commit 6cab986

File tree

1 file changed

+10
-10
lines changed

1 file changed

+10
-10
lines changed

visualvm/uisupport/src/org/graalvm/visualvm/uisupport/UISupport.java

Lines changed: 10 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -36,52 +36,52 @@
3636
*/
3737
public class UISupport {
3838

39-
/** Returns default background of tables & textcomponents */
39+
/** Returns default background of tables & textcomponents */
4040
public static Color getDefaultBackground() {
4141
return UIUtils.getProfilerResultsBackground();
4242
}
4343

44-
/** Determines if current L&F is AquaLookAndFeel */
44+
/** Determines if current L&F is AquaLookAndFeel */
4545
public static boolean isAquaLookAndFeel() {
4646
return UIUtils.isAquaLookAndFeel();
4747
}
4848

49-
/** Determines if current L&F is GTKLookAndFeel */
49+
/** Determines if current L&F is GTKLookAndFeel */
5050
public static boolean isGTKLookAndFeel() {
5151
return UIUtils.isGTKLookAndFeel();
5252
}
5353

54-
/** Determines if current L&F is Nimbus */
54+
/** Determines if current L&F is Nimbus */
5555
public static boolean isNimbusLookAndFeel() {
5656
return UIUtils.isNimbusLookAndFeel();
5757
}
5858

59-
/** Determines if current L&F is GTK using Nimbus theme */
59+
/** Determines if current L&F is GTK using Nimbus theme */
6060
public static boolean isNimbusGTKTheme() {
6161
return UIUtils.isNimbusGTKTheme();
6262
}
6363

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*/
6565
public static boolean isNimbus() {
6666
return UIUtils.isNimbus();
6767
}
6868

69-
/** Determines if current L&F is MetalLookAndFeel */
69+
/** Determines if current L&F is MetalLookAndFeel */
7070
public static boolean isMetalLookAndFeel() {
7171
return UIUtils.isMetalLookAndFeel();
7272
}
7373

74-
/** Determines if current L&F is Windows Classic LookAndFeel */
74+
/** Determines if current L&F is Windows Classic LookAndFeel */
7575
public static boolean isWindowsClassicLookAndFeel() {
7676
return UIUtils.isWindowsClassicLookAndFeel();
7777
}
7878

79-
/** Determines if current L&F is WindowsLookAndFeel */
79+
/** Determines if current L&F is WindowsLookAndFeel */
8080
public static boolean isWindowsLookAndFeel() {
8181
return UIUtils.isWindowsLookAndFeel();
8282
}
8383

84-
/** Determines if current L&F is Windows XP LookAndFeel */
84+
/** Determines if current L&F is Windows XP LookAndFeel */
8585
public static boolean isWindowsXPLookAndFeel() {
8686
return UIUtils.isWindowsXPLookAndFeel();
8787
}

0 commit comments

Comments
 (0)