java look and feel themes

Solutions on MaxInterview for java look and feel themes by the best coders in the world

showing results for - "java look and feel themes"
Alessandro
15 Sep 2016
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