class REXML::ExternalEntity

def initialize( src )

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

def to_s

def to_s
  @entity
end

def write( output, indent )

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