Here you can find the source of printInstalledPLAFs()
public static void printInstalledPLAFs()
//package com.java2s; /*//from ww w.ja va 2s .c om * Copyright (C) 2013, Thomas Obenaus. All rights reserved. * Licensed under the New BSD License (3-clause lic) * See attached license-file. * * Author: Thomas Obenaus * EMail: obenaus.thomas@gmail.com * Project: JavaComponents/Widgets */ import javax.swing.UIManager; public class Main { public static void printInstalledPLAFs() { UIManager.LookAndFeelInfo plaf[] = UIManager.getInstalledLookAndFeels(); for (int i = 0, n = plaf.length; i < n; i++) { System.out.println("Name: " + plaf[i].getName()); System.out.println(" Class name: " + plaf[i].getClassName()); } } }