/**
  * Launch the application
  *
  * @param args
  */
 public static void main(String[] args) {
   try {
     s_prefs.load(true);
     BKSCoverageAppWnd window = new BKSCoverageAppWnd();
     window.open();
     s_prefs.save();
   } catch (Exception e) {
     e.printStackTrace();
   }
 }
  /**
   * Launch the application
   *
   * @param args
   */
  public static void main(String[] args) {
    try {
      // En SWT hay que ajustar el tamaño de los fonts en Mac OS
      String OS_Name = System.getProperty("os.name");
      if (OS_Name != null && OS_Name.toLowerCase().contains("mac os")) {
        System.setProperty("org.eclipse.swt.internal.carbon.smallFonts", "true");
      }

      s_prefs.load(true);
      IPAToolAppWnd window = new IPAToolAppWnd();
      window.open();
      s_prefs.save();
    } catch (Exception e) {
      e.printStackTrace();
    }
  }