function StringBuffer(){
this._strings_ = new Array();
}
StringBuffer.prototype.append = function(str){
this._strings_.push(str);
StringBuffer.prototype.toString = function(){
this._strings_.join("");