mirror of https://github.com/OpenIdentityPlatform/OpenDJ.git

abobrov
18.44.2007 24c021c8d73c18a7aa9104a6333279f4bb150a6b
opends/src/quicksetup/org/opends/quicksetup/util/Utils.java
@@ -1338,4 +1338,18 @@
  {
    return MAX_LINE_WIDTH;
  }
  /**
   * Puts Swing menus in the Mac OS menu bar, if using the Aqua look and feel,
   * and sets the application name that is displayed in the application menu
   * and in the dock.
   * @param appName
   *          application name to display in the menu bar and the dock.
   */
  public static void setMacOSXMenuBar(String appName)
  {
    System.setProperty("apple.laf.useScreenMenuBar", "true");
    System.setProperty("com.apple.mrj.application.apple.menu.about.name",
                       appName);
  }
}