Function: gud-jdb-build-source-files-list

gud-jdb-build-source-files-list is a byte-compiled function defined in gud.el.gz.

Signature

(gud-jdb-build-source-files-list PATH EXTN)

Documentation

Return a list of java source files (absolute paths).

PATH gives the directories in which to search for files with extension EXTN. Normally EXTN is given as the regular expression
 "\\.java$" .

Source Code

;; Defined in /usr/src/emacs/lisp/progmodes/gud.el.gz
(defun gud-jdb-build-source-files-list (path extn)
  "Return a list of java source files (absolute paths).
PATH gives the directories in which to search for files with
extension EXTN.  Normally EXTN is given as the regular expression
 \"\\.java$\" ."
  (mapcan (lambda (d)
            (when (file-directory-p d)
              (directory-files d t extn nil)))
          path))