class REXML::Comment

def initialize( first, second = nil )

Parameters:
  • second () -- If the first argument is a Source, this argument
  • first () -- If String, the contents of this comment are set to the
def initialize( first, second = nil )
  super(second)
  if first.kind_of? String
    @string = first
  elsif first.kind_of? Comment
    @string = first.string
  end
end