Function: srecode-field

srecode-field is a byte-compiled function defined in fields.el.gz.

Signature

(srecode-field &rest SLOTS)

Documentation

Create a new object of class type srecode-field(var)/srecode-field(fun).

Source Code

;; Defined in /usr/src/emacs/lisp/cedet/srecode/fields.el.gz
;;; FIELDS

(defclass srecode-field (srecode-overlaid)
  ((tail :documentation
	 "Overlay used on character just after this field.
Used to provide useful keybindings there.")
   (name :initarg :name
	 :documentation
	 "The name of this field.
Usually initialized from the dictionary entry name that
the users needs to edit.")
   (prompt :initarg :prompt
	   :documentation
	   "A prompt string to use if this were in the minibuffer.
Display when the cursor enters this field.")
   (read-fcn :initarg :read-fcn
	     :documentation
	     "A function that would be used to read a string.
Try to use this to provide useful completion when available.")
   )
  "Representation of one field.")