# File lib/rgen/util/name_helper.rb, line 34
  def camelize(str)
    str.split(/[\W_]/).collect{|s| firstToUpper(s.downcase)}.join
  end