Support for the Ruby 2.4 series has ended. See here for reference.
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.4.1
Ruby-doc.org is provided by James Britt and Neurogami. Maximum R+D.
Generated with Ruby-doc Rdoc Generator 0.42.0.