REXML::Child
# File rexml/doctype.rb, line 281 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 304 def name @name end
# File rexml/doctype.rb, line 289 def to_s notation = "<!NOTATION #{@name}" reference_writer = ReferenceWriter.new(@middle, @public, @system) reference_writer.write(notation) notation << ">" notation end
# File rexml/doctype.rb, line 297 def write( output, indent=-1 ) output << to_s end
This page was generated for Ruby 2.5.9
Generated with Ruby-doc Rdoc Generator 0.42.0.