14. 119. 2. Listing the names of the look-and-feel classes that are installed with the JDK
import javax.swing.UIManager;
public class MainClass { public static void main(String[] a) {
UIManager.LookAndFeelInfo[] looks = UIManager.getInstalledLookAndFeels(); for (UIManager.LookAndFeelInfo look : looks) {
System.out.println(look.getClassName());
}
}
}