/** Creates a new instance. */
 public QuaquaPantherFileChooserLAF() {
   String targetClassName = "apple.laf.AquaLookAndFeel";
   try {
     setTarget((LookAndFeel) Class.forName(targetClassName).newInstance());
   } catch (Exception e) {
     throw new InternalError(
         "Unable to instanciate target Look and Feel \""
             + targetClassName
             + "\". "
             + e.getMessage());
   }
 }