Function: semantic-format-tag-uml-protection-to-string

semantic-format-tag-uml-protection-to-string is a byte-compiled function defined in format.el.gz.

Signature

(semantic-format-tag-uml-protection-to-string PROTECTION-SYMBOL COLOR)

Documentation

Convert PROTECTION-SYMBOL to a string for UML.

By default, uses semantic-format-tag-protection-symbol-to-string-assoc-list to convert. By default character returns are:
  public -- +
  private -- -
  protected -- #.
If PROTECTION-SYMBOL is unknown, then the return value is semantic-uml-no-protection-string. COLOR indicates if we should use an image on the text.

Source Code

;; Defined in /usr/src/emacs/lisp/cedet/semantic/format.el.gz
(define-overloadable-function semantic-format-tag-uml-protection-to-string (protection-symbol color)
  "Convert PROTECTION-SYMBOL to a string for UML.
By default, uses `semantic-format-tag-protection-symbol-to-string-assoc-list'
to convert.
By default character returns are:
  public    -- +
  private   -- -
  protected -- #.
If PROTECTION-SYMBOL is unknown, then the return value is
`semantic-uml-no-protection-string'.
COLOR indicates if we should use an image on the text.")