1// Java sample code to get the list of
2// installed Look and Feel themes, here is a sample code:
3import javax.swing.UIManager;
4
5public class MainClass { public static void main(String[] a)
6 {
7 UIManager.LookAndFeelInfo[] looks = UIManager.getInstalledLookAndFeels();
8 for (UIManager.LookAndFeelInfo look : looks) {
9 System.out.println(look.getClassName());
10 }
11 }
12}
13