add-menu-item(clojure.contrib.swing-utils)

Adds a menu item to the parent according to the item description. The item description is a map of the following structure.

Either: - one single :action specifying a javax.swing.Action to be associated with the item. - a specification suitable for make-action - a set of :name, :mnemonic and :items keys, specifying a submenu with the given sequence of item entries. - an empty map specifying a separator.

; clojure/contrib/swing_utils.clj:101
(defmulti add-menu-item
  {:arglists '([parent item])}
  (fn add-menu-item-dispatch [_ item]
    (some @menu-constructor-dispatch (keys item))))

Copyright (c) Rich Hickey. All rights reserved.

The use and distribution terms for this software are covered by the Eclipse Public License 1.0, which can be found in the file epl-v10.html at the root of this distribution. By using this software in any fashion, you are agreeing to be bound by the terms of this license. You must not remove this notice, or any other, from this software.