# File lib/yard/generators/helpers/uml_helper.rb, line 4
      def uml_visibility(object)
        case object.visibility
        when :public
          '+'
        when :protected
          '#'
        when :private
          '-'
        end
      end