Function: srecode-field-value
srecode-field-value is a byte-compiled function defined in
dictionary.el.gz.
Signature
(srecode-field-value &rest SLOTS)
Documentation
Create a new object of class type srecode-field-value(var)/srecode-field-value(fun).
Source Code
;; Defined in /usr/src/emacs/lisp/cedet/srecode/dictionary.el.gz
;;; FIELD EDITING COMPOUND VALUE
;;
;; This is an interface to using field-editing objects
;; instead of asking questions. This provides the basics
;; behind this compound value.
(defclass srecode-field-value (srecode-dictionary-compound-value)
((firstinserter :initarg :firstinserter
:documentation
"The inserter object for the first occurrence of this field.")
(defaultvalue :initarg :defaultvalue
:documentation
"The default value for this inserter.")
)
"When inserting values with editable field mode, a dictionary value.
Compound values allow a field to be stored in the dictionary for when
it is referenced a second time. This compound value can then be
inserted with a new editable field.")