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 236
236:     def initialize( src )
237:       super()
238:       @entity = src
239:     end

Public Instance methods

[Source]

     # File lib/rexml/doctype.rb, line 240
240:     def to_s
241:       @entity
242:     end

[Source]

     # File lib/rexml/doctype.rb, line 243
243:     def write( output, indent )
244:       output << @entity
245:     end

[Validate]