Skip to content

Instantly share code, notes, and snippets.

@keithrbennett
Created March 16, 2009 18:42
Show Gist options
  • Select an option

  • Save keithrbennett/79999 to your computer and use it in GitHub Desktop.

Select an option

Save keithrbennett/79999 to your computer and use it in GitHub Desktop.
(defn create-simple-document-listener
"Returns a DocumentListener that performs the specified behavior
identically regardless of type of document change."
[behavior]
(proxy [DocumentListener][]
(changedUpdate [event] (behavior event))
(insertUpdate [event] (behavior event))
(removeUpdate [event] (behavior event))))
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment