class LiveJournal::Sync::CommentsXML::Base

Attributes

comments[R]
maxid[R]
usermap[R]

Public Class Methods

new(data=nil) click to toggle source
# File lib/livejournal/comments-xml.rb, line 58
def initialize(data=nil)
  @maxid = nil
  @comments = {}
  @usermap = {}
  parse data if data
end