Function: semantic-symref-result

semantic-symref-result is a byte-compiled function defined in symref.el.gz.

Signature

(semantic-symref-result &rest SLOTS)

Documentation

Create a new object of class type semantic-symref-result(var)/semantic-symref-result(fun).

Source Code

;; Defined in /usr/src/emacs/lisp/cedet/semantic/symref.el.gz
;;; RESULTS
;;
;; The results class and methods provide features for accessing hits.
(defclass semantic-symref-result ()
  ((created-by :initarg :created-by
	       :type semantic-symref-tool-baseclass
	       :documentation
	       "Back-pointer to the symref tool creating these results.")
   (hit-files :initarg :hit-files
	      :type list
	      :documentation
	      "The list of files hit.")
   (hit-text :initarg :hit-text
	     :type list
	     :documentation
	     "If the result doesn't provide full lines, then fill in hit-text.
GNU Global does completion search this way.")
   (hit-lines :initarg :hit-lines
	      :type list
	      :documentation
	      "The list of line hits.
Each element is a cons cell of the form (LINE . FILENAME).")
   (hit-tags :initarg :hit-tags
	     :type list
	     :documentation
	     "The list of tags with hits in them.
Use the `semantic-symref-hit-to-tag-via-buffer' method to get
this list.")
   )
  "The results from a symbol reference search.")