Returns a list of Java class and Clojure package names found on the current
classpath. To minimize noise, list is nil unless a '.' is present in the search
string, and nested classes are only shown if a '$' is present.
(defn potiential-classes-on-path "Returns a list of Java class and Clojure package names found on the current classpath. To minimize noise, list is nil unless a '.' is present in the search string, and nested classes are only shown if a '$' is present." ([symbol-string] (when (.contains symbol-string ".") (if (.contains symbol-string "$") @nested-classes @top-level-classes))))
Comments top
No comments for potiential-classes-on-path. Log in to add a comment.