/**
* Description of the Method
*/
protected void showPreviewWindow() {
Skin oldSkin = SkinLookAndFeel.getSkin();
LookAndFeel oldLAF = UIManager.getLookAndFeel();
try {
Object[] values = skinList.getSelectedValues();
if ((values == null) || (values.length != 2)) {
return;
}
Skin skin = new CompoundSkin(SkinLookAndFeel.loadSkin((String) values[0]),
SkinLookAndFeel.loadSkin((String) values[1]));
SkinLookAndFeel.setSkin(skin);
UIManager.setLookAndFeel("com.l2fprod.gui.plaf.skin.SkinLookAndFeel");