Methods
R
X
Included Modules
Instance Public methods
raise_for_undefined_entity?()
# File ../ruby/lib/rss/rexmlparser.rb, line 40
def raise_for_undefined_entity?
  false
end
xmldecl(version, encoding, standalone)
# File ../ruby/lib/rss/rexmlparser.rb, line 45
def xmldecl(version, encoding, standalone)
  super(version, encoding, standalone == "yes")
  # Encoding is converted to UTF-8 when REXML parse XML.
  @encoding = 'UTF-8'
end