Function: srecode-field-value--eieio-childp
srecode-field-value--eieio-childp is a byte-compiled function defined
in dictionary.el.gz.
Signature
(srecode-field-value--eieio-childp OBJ)
Documentation
Return non-nil if OBJ is an object of type srecode-field-value(var)/srecode-field-value(fun) or a
subclass.
Aliases
srecode-field-value-child-p (obsolete since 25.1)
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.")