public class

StringBufferImplArray

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.StringBufferImplArray

Class Overview

A StringBufferImpl that uses an array and an explicit length for appending strings. Note that the length of the array is stored as a property of the underlying JavaScriptObject because making it a field on this object causes difficulty with inlining. This is the best implementation on IE, and generally second best on all other browsers, making it the best default when the user agent is unknown.

Summary

Public Constructors
StringBufferImplArray()
[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 StringBufferImplArray ()