Class REXML::ExternalEntity
In: lib/rexml/doctype.rb
Parent: Child

Methods

new   to_s   write  

Public Class methods

[Source]

     # File lib/rexml/doctype.rb, line 230
230:     def initialize( src )
231:       super()
232:       @entity = src
233:     end

Public Instance methods

[Source]

     # File lib/rexml/doctype.rb, line 234
234:     def to_s
235:       @entity
236:     end

[Source]

     # File lib/rexml/doctype.rb, line 237
237:     def write( output, indent )
238:       output << @entity
239:     end

[Validate]