Function: semantic-displayer-abstract

semantic-displayer-abstract is a byte-compiled function defined in complete.el.gz.

Signature

(semantic-displayer-abstract &rest _)

Documentation

You cannot create a new object of type semantic-displayer-abstract(var)/semantic-displayer-abstract(fun).

Source Code

;; Defined in /usr/src/emacs/lisp/cedet/semantic/complete.el.gz
;; Abstract baseclass for any displayer which supports focus

(defclass semantic-displayer-abstract ()
  ((table :type (or null semanticdb-find-result-with-nil)
	  :initform nil
	  :protection :protected
	  :documentation "List of tags this displayer is showing.")
   (last-prefix :type string
		:protection :protected
		:documentation "Prefix associated with slot `table'.")
   )
  "Abstract displayer baseclass.
Manages the display of some number of tags.
Provides the basics for a displayer, including interacting with
a collector, and tracking tables of completion to display."
  :abstract t)