public class

StringBufferImplConcat

extends StringBufferImplArrayBase
java.lang.Object
   ↳ com.google.gwt.core.client.impl.StringBufferImpl
     ↳ com.google.gwt.core.client.impl.StringBufferImplArrayBase
       ↳ com.google.gwt.core.client.impl.StringBufferImplConcat

Class Overview

A StringBufferImplArrayBase that does a concat for toString(). The performance of this implementation is generally slightly worse than StringBufferImplArray for everything except IE, where it's terrible.

Summary

Public Constructors
StringBufferImplConcat()
Public Methods
void append(Object a, String x)
We don't need to do the null check because concat does it automagically.
Protected Methods
String takeString(Object a)
[Expand]
Inherited Methods
From class com.google.gwt.core.client.impl.StringBufferImplArrayBase
From class com.google.gwt.core.client.impl.StringBufferImpl
From class java.lang.Object

Public Constructors

public StringBufferImplConcat ()

Public Methods

public void append (Object a, String x)

We don't need to do the null check because concat does it automagically.

Protected Methods

protected String takeString (Object a)