(defmacro combo-box [[& items] & {action :action :as opts}] `(doto (JComboBox.) ~@(if action [`(add-action-listener ~action)]) ~@(auto-setters JComboBox *cb-known-keys* opts) ~@(map #(list '.addItem %) items)))
Comments top
No comments for combo-box. Log in to add a comment.