import javax.swing.UIManager;

public class DumpLookAndFeelInfo{
	
	public static void main(String[] s){
		UIManager.LookAndFeelInfo[] installedLafs = UIManager.getInstalledLookAndFeels();
		for(int i=0; i<installedLafs.length; i++){
			UIManager.LookAndFeelInfo info=installedLafs[i];
			System.out.println(info.getName());
		}
	}
}

