Function: semantic-uml-attribute-string
semantic-uml-attribute-string is a byte-compiled function defined in
format.el.gz.
Signature
(semantic-uml-attribute-string TAG &optional PARENT)
Documentation
Return a string for TAG, a child of PARENT representing a UML attribute.
UML attribute strings are things like {abstract} or {leaf}.
Source Code
;; Defined in /usr/src/emacs/lisp/cedet/semantic/format.el.gz
(defun semantic-uml-attribute-string (tag &optional parent)
"Return a string for TAG, a child of PARENT representing a UML attribute.
UML attribute strings are things like {abstract} or {leaf}."
(cond ((semantic-tag-abstract-p tag parent)
"{abstract}")
((semantic-tag-leaf-p tag parent)
"{leaf}")
))