Class: REXML::ExternalEntity

Inherits:
Child show all
Defined in:
lib/rexml/doctype.rb

Instance Attribute Summary

Attributes inherited from Child

#parent

Instance Method Summary collapse

Methods inherited from Child

#bytes, #document, #next_sibling=, #previous_sibling=, #remove, #replace_with

Methods included from Node

#each_recursive, #find_first_recursive, #indent, #index_in_parent, #next_sibling_node, #parent?, #previous_sibling_node

Constructor Details

#initialize(src) ⇒ ExternalEntity

Returns a new instance of ExternalEntity.



230
231
232
233
# File 'lib/rexml/doctype.rb', line 230

def initialize( src )
  super()
  @entity = src
end

Instance Method Details

#to_sObject



234
235
236
# File 'lib/rexml/doctype.rb', line 234

def to_s
  @entity
end

#write(output, indent) ⇒ Object



237
238
239
# File 'lib/rexml/doctype.rb', line 237

def write( output, indent )
  output << @entity
end