# File active_record.rb, line 88
  def save
    objs=@@all.select{|o|o.id==id}
    if(objs.length==0)
      @@all<<self
    else
      @@all[objs[0]]=self
    end
    true
  end