Function: project-interactive-select-target
project-interactive-select-target is a byte-compiled function defined
in ede.el.gz.
Signature
(project-interactive-select-target ARG &rest ARGS)
Implementations
(project-interactive-select-target (THIS ede-project) PROMPT) in `ede.el'.
Interactively query for a target that exists in project THIS. Argument PROMPT is the prompt to use when querying the user for a target.
(project-interactive-select-target (THIS ede-project-placeholder) PROMPT) in `ede.el'.
Make sure placeholder THIS is replaced with the real thing, and pass through.
Source Code
;; Defined in /usr/src/emacs/lisp/cedet/ede.el.gz
;;; EDE project target baseline methods.
;;
;; If you are developing a new project type, you need to implement
;; all of these methods, unless, of course, they do not make sense
;; for your particular project.
;;
;; Your targets should inherit from `ede-target', and your project
;; files should inherit from `ede-project'. Create the appropriate
;; methods based on those below.
(cl-defmethod project-interactive-select-target ((this ede-project-placeholder) prompt)
; checkdoc-params: (prompt)
"Make sure placeholder THIS is replaced with the real thing, and pass through."
(project-interactive-select-target this prompt))