method

to_s

to_s()
public

No documentation available.

# File lib/rexml/doctype.rb, line 251
    def to_s
      notation = "<!NOTATION #{@name} #{@middle}"
      notation << " #{@public.inspect}" if @public
      notation << " #{@system.inspect}" if @system
      notation << ">"
      notation
    end