Function: semantic-displayer-focus-abstract-p
semantic-displayer-focus-abstract-p is a byte-compiled function
defined in complete.el.gz.
Signature
(semantic-displayer-focus-abstract-p OBJ)
Documentation
Return non-nil if OBJ is an object of type semantic-displayer-focus-abstract(var)/semantic-displayer-focus-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-focus-abstract (semantic-displayer-abstract)
((focus :type number
:protection :protected
:documentation "A tag index from `table' which has focus.
Multiple calls to the display function can choose to focus on a
given tag, by highlighting its location.")
(find-file-focus
:allocation :class
:initform nil
:documentation
"Non-nil if focusing requires a tag's buffer be in memory.")
)
"Abstract displayer supporting `focus'.
A displayer which has the ability to focus in on one tag.
Focusing is a way of differentiating among multiple tags
which have the same name."
:abstract t)