class REXML::Child

def replace_with( child )

Returns:: self

Parent.replace_child
Replaces this object with another object. Basically, calls
def replace_with( child )
  @parent.replace_child( self, child )
  self
end