REXML::Child
# File rexml/doctype.rb, line 243 def initialize name, middle, pub, sys super(nil) @name = name @middle = middle @public = pub @system = sys end
This method retrieves the name of the notation.
Method contributed by Henrik Martensson
# File rexml/doctype.rb, line 266 def name @name end
# File 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
# File rexml/doctype.rb, line 259 def write( output, indent=-1 ) output << to_s end
This page was generated for Ruby 2.5.0
Ruby-doc.org is a service of James Britt and Neurogami, an erratic source of art, music, and technology.
Generated with Ruby-doc Rdoc Generator 0.42.0.