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