Function: semantic-collector-project-abstract-p

semantic-collector-project-abstract-p is a byte-compiled function defined in complete.el.gz.

Signature

(semantic-collector-project-abstract-p OBJ)

Documentation

Return non-nil if OBJ is an object of type semantic-collector-project-abstract(var)/semantic-collector-project-abstract(fun).

Source Code

;; Defined in /usr/src/emacs/lisp/cedet/semantic/complete.el.gz
;;; PROJECT SPECIFIC COMPLETION
;;
(defclass semantic-collector-project-abstract (semantic-collector-abstract)
  ((path :initarg :path
	 :initform nil
	 :documentation "List of database tables to search.
At creation time, it can be anything accepted by
`semanticdb-find-translate-path' as a PATH argument.")
   )
  "Root class for project wide completion engines.
Uses semanticdb for searching all tags in the current project."
  :abstract t)