method
to_s
v2_4_6 -
Show latest stable
- Class:
REXML::NotationDecl
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