(defmacro text-field [& {action :action str-ref :str-ref :as opts}]
`(doto (JTextField.)
~@(if action
[`(add-action-listener ~action)])
~@(if str-ref
[`(add-str-ref-doc-listener ~str-ref)])
~@(auto-setters JTextField *text-field-known-keys* opts)))
Comments top
No comments for text-field. Log in to add a comment.