lookAndFeelSettingMenu.setIcon(IconUtils.createImageIcon(ICON_CLASS_PATH + "color_wheel.png"));
lookAndFeelSettingMenu.setMnemonic('L');
final UIManager.LookAndFeelInfo[] lookAndFeelInfos = UIManager.getInstalledLookAndFeels();
final String defaultLookAndFeelName = UIManager.getLookAndFeel().getName();
final ActionListener lookAndFeelActionListener = new LookAndFeelAdapter(this);
for (int i = 0; i < lookAndFeelInfos.length; i++) {
final String oneLookAndFeelName = lookAndFeelInfos[i].getName();
JRadioButtonMenuItem oneLookAndFeelMenuItem = new JRadioButtonMenuItem(oneLookAndFeelName);
final String className = lookAndFeelInfos[i].getClassName();
if(defaultLookAndFeelName.equals(oneLookAndFeelName)) {