Function: semantic-displayer-focus-abstract--eieio-childp

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

Signature

(semantic-displayer-focus-abstract--eieio-childp OBJ)

Documentation

Return non-nil if OBJ is an object of type semantic-displayer-focus-abstract(var)/semantic-displayer-focus-abstract(fun) or a subclass.

Aliases

semantic-displayer-focus-abstract-child-p (obsolete since 25.1)

Source Code

;; Defined in /usr/src/emacs/lisp/cedet/semantic/complete.el.gz
(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)